This commit is contained in:
2025-10-26 09:52:39 +03:00
parent 50a5f63cb0
commit c64eb452a5
2 changed files with 14 additions and 1 deletions
-1
View File
@@ -27,7 +27,6 @@ in
enableVectorChord = true;
};
};
# postgresql.package = pkgs.postgresql_17;
};
fileSystems."${config.services.immich.mediaLocation}" = {
+14
View File
@@ -0,0 +1,14 @@
{
config,
lib,
pkgs,
...
}:
let
master = import inputs.nixpkgs-master {
system = "x86_64-linux";
};
in
{
services.postgresql.package = pkgs.postgresql_17;
}