diff options
| author | Grisha Shipunov | 2025-01-29 22:45:01 +0100 |
|---|---|---|
| committer | Grisha Shipunov | 2025-01-29 22:45:01 +0100 |
| commit | 844c482ceeb53f2f436425a863f66a235cf26413 (patch) | |
| tree | 364a7724778fd783081055239aa38bb1f25896e9 /hosts/immich/immich.nix | |
| parent | 9f3cbd32607a143c4ff52d78b60bbef9c9cdd94b (diff) | |
immich is not being backported to stable
Diffstat (limited to 'hosts/immich/immich.nix')
| -rw-r--r-- | hosts/immich/immich.nix | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/hosts/immich/immich.nix b/hosts/immich/immich.nix index aa220bf..40243ae 100644 --- a/hosts/immich/immich.nix +++ b/hosts/immich/immich.nix @@ -1,4 +1,12 @@ -{ config, ... }: +{ + config, + inputs, + pkgs, + ... +}: +let + immich-latest = inputs.nixpkgs-unstable.legacyPackages.${pkgs.system}.immich; +in { sops.secrets."immich.yaml" = { sopsFile = ./immich.yaml; @@ -8,6 +16,7 @@ services.immich = { enable = true; + package = immich-latest; host = "10.89.88.13"; redis.enable = true; database.createDB = true; |
