infrastructure/hosts/aurum/system/security.nix

21 lines
393 B
Nix
Raw Permalink Normal View History

{...}: {
2024-01-15 15:50:55 +00:00
# enable polkit
security.polkit.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 = {};
# enable ssh agent
programs.ssh = {
startAgent = true;
agentTimeout = "1h";
};
# # ssh-askpass replacement
# programs.ssh.enableAskPassword = true;
# programs.seahorse.enable = true;
2024-01-15 15:50:55 +00:00
}