fix perms

This commit is contained in:
2025-10-16 00:37:45 -05:00
parent 2ad827e5fd
commit 18679fc6ca
2 changed files with 17 additions and 1 deletions

View File

@@ -86,6 +86,11 @@ in {
r = "*";
A = "blake";
};
flags = {
chmod_f = 660;
chmod_d = 770;
#gid = ?;
};
};
"/media" = {
path = "/holocron/media";
@@ -94,12 +99,22 @@ in {
w = "@media";
A = "blake";
};
flags = {
chmod_f = 660;
chmod_d = 770;
gid = 700;
};
};
"/users/blake" = {
path = "/holocron/users/blake";
access = {
A = "blake";
};
flags = {
chmod_f = 660;
chmod_d = 770;
gid = 1000;
};
};
};
};

View File

@@ -20,7 +20,6 @@
highlight = "underline";
};
history = {
size = 10000;
save = 10000;
@@ -141,4 +140,6 @@
# ];
# };
};
# rid the world of ~/.zshenv
home.file.".zshenv".enable = false;
}