Compare commits

...

2 commits

Author SHA1 Message Date
76f29fae24
fix(ninurta): remove unused postresql backup
Some checks are pending
Continuous Integration / Checks (push) Waiting to run
2025-07-26 21:22:08 +02:00
763d8f4783
fix(admin): set shell always from admins.nix 2025-07-26 21:21:46 +02:00
2 changed files with 1 additions and 8 deletions

View file

@ -97,7 +97,7 @@ in
services.openssh.openFirewall = true;
users.users = mapAttrs (user: keys: {
shell = lib.mkDefault shells."${keys.shell}";
shell = shells."${keys.shell}";
extraGroups = lib.mkDefault extraGroups;
isNormalUser = true;
openssh.authorizedKeys.keys = keys.keys;

View file

@ -149,13 +149,6 @@ in
startAt = "daily";
};
services.postgresqlBackup = {
enable = true;
backupAll = true;
compression = "zstd";
location = "/var/backup/postgresql";
};
age.secrets."ninurta-backup-passphrase" = {
file = "${secretsPath}/ninurta-backup-passphrase.age";
mode = "400";