20 lines
413 B
Nix
20 lines
413 B
Nix
{ pkgs, ... }: {
|
|
|
|
fonts = {
|
|
packages = with pkgs; [
|
|
atkinson-hyperlegible
|
|
(nerdfonts.override { fonts = [ "FiraCode" ]; })
|
|
];
|
|
|
|
fontDir.enable = true;
|
|
|
|
enableDefaultPackages = true;
|
|
|
|
fontconfig.defaultFonts = {
|
|
sansSerif = [ "Atkinson Hyperlegible" ];
|
|
serif = [ "Atkinson Hyperlegible" ];
|
|
monospace = [ "FiraCode Nerd Font" "Fira Code" ];
|
|
};
|
|
};
|
|
|
|
}
|