15 lines
275 B
Nix
15 lines
275 B
Nix
|
|
{
|
|
pkgs,
|
|
...
|
|
}: {
|
|
fonts.fontconfig.enable = true; # allows adding fonts from home manager config
|
|
home.packages = with pkgs; [
|
|
nerd-fonts.ubuntu
|
|
nerd-fonts.ubuntu-mono
|
|
nerd-fonts.ubuntu-sans
|
|
|
|
nerd-fonts.commit-mono
|
|
nerd-fonts.sauce-code-pro
|
|
];
|
|
}
|