nix-config/modules/fonts/default.nix
2024-12-06 14:54:23 +01:00

18 lines
349 B
Nix

{ pkgs, ... }: {
fonts = {
packages = with pkgs; [
alegreya
alegreya-sans
nerd-fonts.fira-code
roboto
ubuntu_font_family
];
fontconfig = {
defaultFonts = {
serif = [ "Alegreya" ];
sansSerif = [ "Alegreya Sans" ];
monospace = [ "Fira Code Nerd Font" ];
};
};
};
}