Compare commits

..

No commits in common. "653ee4e3b6a083aebed8cf3338e74c6b475847ab" and "d532eda1096fa3d8f95a79b256bd9291d0d21d57" have entirely different histories.

3 changed files with 20 additions and 3 deletions

View File

@ -693,6 +693,22 @@
"type": "github"
}
},
"nixpkgs-immich": {
"locked": {
"lastModified": 1727171772,
"narHash": "sha256-6T0ctDFq0lepqjViL8TVw4RhpkHIUyoNWzPgTjPamZo=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "d026e3fa1ad0d78d9072d9afdeae515d2d68acae",
"type": "github"
},
"original": {
"owner": "nixos",
"repo": "nixpkgs",
"rev": "d026e3fa1ad0d78d9072d9afdeae515d2d68acae",
"type": "github"
}
},
"nixpkgs-lib": {
"locked": {
"lastModified": 1727571693,
@ -795,6 +811,7 @@
"nil": "nil",
"nixos-hardware": "nixos-hardware",
"nixpkgs": "nixpkgs_2",
"nixpkgs-immich": "nixpkgs-immich",
"nur": "nur",
"snowfall-lib": "snowfall-lib",
"srvos": "srvos",

View File

@ -84,8 +84,8 @@ with lib; {
in
mkIf cfg.enable {
age.secrets = {
restic-environment.file = cfg.resticEnvironmentFile.file;
restic-password.file = cfg.resticPasswordFile.file;
restic-environment.file = cfg.resticEnvironment.file;
restic-password.file = cfg.resticPassword.file;
};
services.restic.backups =

View File

@ -26,7 +26,7 @@
package = cfg.package;
};
snowflake.services.backups.config.postgresql = let
snowflake.services.backup.config.postgresql = let
compressSuffix = ".zstd";
compressCmd = "${pkgs.zstd}/bin/zstd -c";