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