mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 08:06:50 +01:00
14 lines
202 B
Nix
14 lines
202 B
Nix
|
|
{
|
||
|
|
config,
|
||
|
|
lib,
|
||
|
|
pkgs,
|
||
|
|
...
|
||
|
|
}: {
|
||
|
|
config = lib.mkIf config.fireproof.desktop.enable {
|
||
|
|
fonts.enableDefaultPackages = true;
|
||
|
|
fonts.packages = with pkgs; [
|
||
|
|
nerd-fonts.hack
|
||
|
|
];
|
||
|
|
};
|
||
|
|
}
|