diff --git a/flake.lock b/flake.lock index 489fe9d..9f89d0a 100644 --- a/flake.lock +++ b/flake.lock @@ -358,6 +358,22 @@ "type": "github" } }, + "nixpkgs-master": { + "locked": { + "lastModified": 1754052933, + "narHash": "sha256-pCnkSQVLoFJy98pQ9Hn3c/SBDdn1KNQS7G0Jor92sR0=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "2a22aa335aa1dbaf9cf3565667fb2e798b265352", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "master", + "repo": "nixpkgs", + "type": "github" + } + }, "nixpkgs-stable": { "locked": { "lastModified": 1753749649, @@ -390,22 +406,6 @@ "type": "github" } }, - "nixpkgs-webui": { - "locked": { - "lastModified": 1752779427, - "narHash": "sha256-bASbG3Er3gPw24+1zpk6gNU2eVXbssquQJMoSJPnP5Y=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "e63467437ce61d8d9a36e09254e8d07b472da0c6", - "type": "github" - }, - "original": { - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "e63467437ce61d8d9a36e09254e8d07b472da0c6", - "type": "github" - } - }, "nixpkgs_2": { "locked": { "lastModified": 1753432016, @@ -520,9 +520,9 @@ "nixpkgs": "nixpkgs_3", "nixpkgs-fingerprint": "nixpkgs-fingerprint", "nixpkgs-last-unstable": "nixpkgs-last-unstable", + "nixpkgs-master": "nixpkgs-master", "nixpkgs-stable": "nixpkgs-stable", "nixpkgs-unstable": "nixpkgs-unstable", - "nixpkgs-webui": "nixpkgs-webui", "nur": "nur", "nypkgs": "nypkgs", "plasma-manager": "plasma-manager", diff --git a/flake.nix b/flake.nix index 0aafcc1..b8f05a6 100755 --- a/flake.nix +++ b/flake.nix @@ -12,7 +12,7 @@ nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; nixpkgs-last-unstable.url = "github:NixOS/nixpkgs/6b4955211758ba47fac850c040a27f23b9b4008f"; # 6027c30c8e9810896b92429f0092f624f7b1aace nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; - nixpkgs-webui.url = "github:NixOS/nixpkgs/e63467437ce61d8d9a36e09254e8d07b472da0c6"; # 72353fc1fa61189fb76133d50c519e871c858c39 # 5b38c7435fb1112a8b36b1652286996a7998c5b5 + nixpkgs-master.url = "github:NixOS/nixpkgs/master"; # e63467437ce61d8d9a36e09254e8d07b472da0c6 # 72353fc1fa61189fb76133d50c519e871c858c39 # 5b38c7435fb1112a8b36b1652286996a7998c5b5 nixpkgs-stable.url = "github:NixOS/nixpkgs/nixos-25.05"; nixpkgs-fingerprint.url = "github:NixOS/nixpkgs/nixos-24.11"; nixos.url = "github:NixOS/nixpkgs/nixos-unstable"; diff --git a/modules/server/immich.nix b/modules/server/immich.nix index 27ed3ac..f2c3ec8 100755 --- a/modules/server/immich.nix +++ b/modules/server/immich.nix @@ -6,12 +6,12 @@ ... }: let - unstable = import inputs.nixos { system = "x86_64-linux"; }; + latest = import inputs.nixpkgs-master { system = "x86_64-linux"; }; in { services = { immich = { - package = unstable.immich; + package = latest.immich; enable = true; port = 2283; host = "0.0.0.0";