nix-config/modules/system/fonts.nix
2023-12-27 16:38:38 +01:00

16 lines
331 B
Nix

{ pkgs, ... }: {
# Configure fonts
fonts.packages = with pkgs; [
alegreya
alegreya-sans
(nerdfonts.override { fonts = [ "FiraCode" ]; })
];
fonts.fontconfig = {
defaultFonts = {
serif = [ "Alegreya" ];
sansSerif = [ "Alegreya Sans" ];
monospace = [ "Fira Code Nerd Font" ];
};
};
}