change copyparty folders and add write access
Some checks failed
/ perform flake analysis (push) Successful in 39s
/ build hive configuration (push) Has been cancelled

This commit is contained in:
shobu
2026-01-17 16:20:53 +01:00
parent d83ecd19dd
commit 37b5d11b75
4 changed files with 53 additions and 158 deletions

View File

@@ -27,13 +27,50 @@
shr = "/shares";
};
accounts = {
serhao = {
passwordFile = config.age.secrets.copyparty-serhao.path;
};
};
volumes = {
"/media" = {
path = "/mnt/mediacenter/media";
"/movies" = {
path = "/mnt/mediacenter/media/movies";
access = {
r = "*";
};
};
"/shows" = {
path = "/mnt/mediacenter/media/shows";
access = {
r = "*";
};
};
"/musics" = {
path = "/mnt/mediacenter/media/musics";
access = {
r = "*";
};
};
"/mediacenter" = {
path = "/mnt/mediacenter/media";
access = {
rw = ["serhao"];
};
flags = {
e2d = true;
};
};
"/data" = {
path = "/mnt/data";
access = {
rw = ["serhao"];
};
flags = {
e2d = true;
};
};
};
};