Files
nixos/modules/nix-config/security.nix
2026-03-04 22:24:33 +01:00

17 lines
314 B
Nix

{ ... }:
{
security.sudo.extraConfig = ''
Defaults pwfeedback
Defaults timestamp_timeout=120
'';
sops = {
age.sshKeyPaths = [
"/etc/ssh/ssh_host_ed25519_key"
];
defaultSopsFile = ../../secrets/default.sops.yaml;
secrets = {
"wifi_password" = { };
};
};
}