diff --git a/home/fonts/default.nix b/home/fonts/default.nix index 57c8468..066f6b4 100644 --- a/home/fonts/default.nix +++ b/home/fonts/default.nix @@ -4,15 +4,13 @@ home.packages = with pkgs; [ (nerdfonts.override { fonts = [ - "Hack" # my default monospace font - "MPlus" # to display symbols on xmobar - "InconsolataGo" # sometimes I use it as a change from Hack - "CascadiaCode" # used by rofi; todo: set fontconfig to use MPlus instead + "Hack" # my default monospace font + "MPlus" # to display symbols on bars ]; }) - inter # Inter is my default sans-serif font - hack-font # Hack is my default monospace font - libertinus # Libertinus Serif is my default serif font + inter # Inter is my default sans-serif font + hack-font # Hack is my default monospace font + libertinus # Libertinus Serif is my default serif font ]; #fonts.fontconfig.enable = true; }