nixos/modules/desktop/fonts.nix

14 lines
202 B
Nix
Raw Permalink Normal View History

2025-12-12 04:02:55 +01:00
{
config,
lib,
pkgs,
...
}: {
config = lib.mkIf config.fireproof.desktop.enable {
fonts.enableDefaultPackages = true;
fonts.packages = with pkgs; [
nerd-fonts.hack
];
};
}