nixos/jackflix: copyparty: Move /pub to / and put stuff at /priv
All checks were successful
CI / Check, build and cache nixfiles (push) Successful in 2h25m8s

This commit is contained in:
2025-09-09 14:34:54 +01:00
parent 20b7da74bf
commit 7db5e18974

View File

@@ -195,10 +195,6 @@ in
accounts.dev.passwordFile = config.age.secrets."jackflix/copyparty-pass.txt".path;
volumes = {
"/" = {
path = "/mnt/media/stuff";
access.A = "dev"; # dev has admin access
};
"/pub" = {
path = "/mnt/media/public";
access = {
A = "dev";
@@ -208,6 +204,10 @@ in
shr_who = "no"; # no reason to have shares here
};
};
"/priv" = {
path = "/mnt/media/stuff";
access.A = "dev"; # dev has admin access
};
};
};
};