This commit is contained in:
2025-09-24 14:01:05 +03:00
parent 5c62823ae9
commit 9a95052e4c
4 changed files with 61 additions and 69 deletions
+2 -2
View File
@@ -8,8 +8,8 @@
# ./open-webui.nix
../software/beets
./calibre-web.nix
./memos.nix
#./trilium.nix
# ./memos.nix
# ./trilium.nix
./immich.nix
./mealie.nix
./miniflux.nix
+1 -5
View File
@@ -6,13 +6,9 @@
xlib,
...
}:
# let
# pkgsn = import inputs.nixpkgs-master { system = "x86_64-linux"; };
# in
{
services = {
immich = {
#package = pkgsn.immich; # inputs.self.packages.x86_64-linux.immich;
enable = true;
port = 2283;
host = "0.0.0.0";
@@ -37,7 +33,7 @@
};
systemd.tmpfiles.rules = [
"z /mnt/immich 0755 immich immich -" # beets absolute paths
"z /mnt/immich 0755 immich immich -"
];
users.users.immich.extraGroups = [
+5 -1
View File
@@ -4,8 +4,12 @@
}:
{
services.mealie = {
enable = false;
enable = true;
listenAddress = "0.0.0.0";
port = 9000;
database.createLocally = true;
settings = {
ALLOW_SIGNUP = "true";
};
};
}