infrastructure/hosts/silicon/system/security/default.nix

18 lines
332 B
Nix
Raw Normal View History

2023-12-15 15:18:36 +00:00
{...}: {
# enable polkit
security.polkit.enable = true;
# enable gpg agent
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryFlavor = "gnome3";
};
# secrets keyring
services.gnome.gnome-keyring.enable = true;
# allow swaylock to use pam
2023-12-15 15:18:36 +00:00
security.pam.services.swaylock = {};
}