nixos/modules/desktop/fonts.nix
2025-05-20 21:55:47 +02:00

6 lines
112 B
Nix

{pkgs, ...}: {
fonts.enableDefaultPackages = true;
fonts.packages = with pkgs; [
nerd-fonts.hack
];
}