diff --git a/modules/profiles/graphical.nix b/modules/profiles/graphical.nix index c47f7a5..c72f3dd 100644 --- a/modules/profiles/graphical.nix +++ b/modules/profiles/graphical.nix @@ -17,4 +17,26 @@ # Enable sound. sound.enable = true; hardware.pulseaudio.enable = true; + + fonts = { + enableDefaultFonts = true; + fonts = with pkgs; [ + alegreya + fira-code + fira-code-symbols + hasklig + inter + liberation_ttf + noto-fonts + noto-fonts-cjk + noto-fonts-emoji + ]; + fontconfig = { + defaultFonts = { + serif = [ "inter" ]; + sansSerif = [ "alegreya" ]; + monospace = [ "hasklig" ]; + }; + }; + }; }