14 lines
201 B
Nix
14 lines
201 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
fonts = {
|
|
enableDefaultPackages = true;
|
|
|
|
packages = with pkgs; [
|
|
nerd-fonts.hurmit
|
|
];
|
|
|
|
fontconfig.defaultFonts.monospace = [ "Hurmit Nerd Font Mono" ];
|
|
};
|
|
}
|