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

21 lines
407 B
Nix
Raw Normal View History

{pkgs, ...}: {
2024-01-15 15:50:55 +00:00
# enable polkit
security.polkit.enable = true;
# enable gpg agent
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryPackage = pkgs.pinentry-gnome3;
2024-01-15 15:50:55 +00:00
};
# secrets keyring
services.gnome.gnome-keyring.enable = true;
# RealtimeKit system
security.rtkit.enable = true;
2024-01-15 15:50:55 +00:00
# allow swaylock to use pam
security.pam.services.swaylock = {};
}