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 = "*"; r = "*";
A = "blake"; A = "blake";
}; };
flags = {
chmod_f = 660;
chmod_d = 770;
#gid = ?;
};
}; };
"/media" = { "/media" = {
path = "/holocron/media"; path = "/holocron/media";
@@ -94,12 +99,22 @@ in {
w = "@media"; w = "@media";
A = "blake"; A = "blake";
}; };
flags = {
chmod_f = 660;
chmod_d = 770;
gid = 700;
};
}; };
"/users/blake" = { "/users/blake" = {
path = "/holocron/users/blake"; path = "/holocron/users/blake";
access = { access = {
A = "blake"; A = "blake";
}; };
flags = {
chmod_f = 660;
chmod_d = 770;
gid = 1000;
};
}; };
}; };
}; };

View File

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