mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-07 20:28:08 +01:00
19 lines
374 B
Nix
19 lines
374 B
Nix
{ currentSystemUser, ... }:
|
|
{
|
|
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" = {
|
|
owner = currentSystemUser;
|
|
};
|
|
};
|
|
};
|
|
}
|