11 lines
242 B
Nix
11 lines
242 B
Nix
{config, pkgs, ...}: {
|
|
fonts.fontconfig.enable = true;
|
|
home.packages = with pkgs; [
|
|
nerd-fonts.jetbrains-mono
|
|
nerd-fonts.ubuntu-mono
|
|
nerd-fonts.ubuntu-sans
|
|
nerd-fonts.dejavu-sans-mono
|
|
nerd-fonts.fira-code
|
|
nerd-fonts.overpass
|
|
];
|
|
} |