Add group permissions to mounts
This commit is contained in:
parent
95d965b0b1
commit
8093238ded
1 changed files with 7 additions and 1 deletions
|
|
@ -2,7 +2,13 @@
|
||||||
let
|
let
|
||||||
smbCommon = {
|
smbCommon = {
|
||||||
fsType = "cifs";
|
fsType = "cifs";
|
||||||
options = [ "credentials=/etc/nixos/smb-secrets,uid=1000,gid=100" ];
|
options = [
|
||||||
|
"credentials=/etc/nixos/smb-secrets"
|
||||||
|
"uid=1000"
|
||||||
|
"gid=100"
|
||||||
|
"file_mode=0664"
|
||||||
|
"dir_mode=0775"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
mounts = {
|
mounts = {
|
||||||
"/mnt/kafka/archive" = "//kafka.local/archive";
|
"/mnt/kafka/archive" = "//kafka.local/archive";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue