add fonts

This commit is contained in:
TheWanderingCrow 2025-06-30 17:19:13 -04:00
parent e9e57d9a01
commit 81ebb44451
2 changed files with 9 additions and 0 deletions

View file

@ -25,6 +25,7 @@ in {
"hosts/common/core/sops.nix"
"hosts/common/core/ssh.nix"
"hosts/common/core/editor.nix"
"hosts/common/core/fonts.nix"
"hosts/common/users/primary"
"hosts/common/users/primary/${platform}.nix"
"modules/common"

View file

@ -0,0 +1,8 @@
{pkgs, ...}: {
fonts.packages = with pkgs; [
font-awesome
nerd-fonts.noto
nerd-fonts.hack
nerd-fonts.jetbrains-mono
];
}