18 lines
377 B
Nix
18 lines
377 B
Nix
{ pkgs, ... }: {
|
|
fonts = {
|
|
packages = with pkgs; [
|
|
alegreya
|
|
alegreya-sans
|
|
(nerdfonts.override { fonts = [ "FiraCode" ]; })
|
|
roboto
|
|
ubuntu_font_family
|
|
];
|
|
fontconfig = {
|
|
defaultFonts = {
|
|
serif = [ "Alegreya" ];
|
|
sansSerif = [ "Alegreya Sans" ];
|
|
monospace = [ "Fira Code Nerd Font" ];
|
|
};
|
|
};
|
|
};
|
|
}
|