Compare commits

..

No commits in common. "4ca8b75fa4d08ed6a046ccc887ce54d7a779a35b" and "8a50a29ef7460eea4407b7087a314fac4f39eb2f" have entirely different histories.

3 changed files with 13 additions and 22 deletions

View File

@ -57,6 +57,19 @@
}))
];
fonts.packages = with pkgs; [
nerdfonts
montserrat
];
programs.ssh.startAgent = true;
programs.zsh.enable = true;
programs.steam.enable = true;
security.polkit.enable = true;
# List services that you want to enable:
# fingerprint unlock
services.fprintd.enable = true;

View File

@ -66,11 +66,6 @@ in {
swayidle # automatic screen locking after system idle time
foot # terminal
keepassxc # used for secrets instead of gnome-keyring
# fonts
noto-fonts
nerd-fonts
fira
];
home.sessionVariables = {
@ -270,16 +265,5 @@ in {
show-fai8led-attempts = true;
};
};
# install fonts
fonts.fontconfig = {
enable = true;
defaultFonts = {
emoji = ["Noto Color Emoji"];
monospace = ["FiraCode Nerd Fonts" "FiraMono Nerd Font" "FiraMono" "NotoMono Nerd Font"];
sansSerif = ["Fira Sans" "NotoSans Nerd Font"];
serif = ["NotoSerif Nerd Font"];
};
};
};
}

View File

@ -57,11 +57,5 @@ in {
extraSpecialArgs = {inherit inputs;};
users.${cfg.user} = import ../../hosts/${cfg.network.hostName}/home.nix;
};
programs.ssh.startAgent = true;
programs.zsh.enable = true;
programs.steam.enable = true;
security.polkit.enable = true;
};
}