Move monospace fonts into a theme

This commit is contained in:
Oliver Davies 2024-03-17 00:27:24 +00:00
parent 384da2a640
commit 5e5e46922c
4 changed files with 43 additions and 17 deletions

11
lib/theme/default.nix Normal file
View file

@ -0,0 +1,11 @@
{pkgs, ...}: {
fonts = {
monospace = {
name = "MesloLGSDZ Nerd Font Mono";
# fc-list : family | sort | grep "Nerd Font"
package = pkgs.nerdfonts.override {fonts = ["Meslo"];};
size = "10";
};
};
}