fix davfs gid
This commit is contained in:
parent
3a44530844
commit
ff5a13c6ce
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ in
|
||||||
where = c.mountPoint;
|
where = c.mountPoint;
|
||||||
options = lib.concatStringsSep "," (
|
options = lib.concatStringsSep "," (
|
||||||
(lib.optional (!(isNull c.uid)) "uid=${toString c.uid}")
|
(lib.optional (!(isNull c.uid)) "uid=${toString c.uid}")
|
||||||
++ (lib.optional (!(isNull c.gid)) "gid=${toString c.uid}")
|
++ (lib.optional (!(isNull c.gid)) "gid=${toString c.gid}")
|
||||||
++ (lib.optional (!(isNull c.fileMode)) "file_mode=${toString c.fileMode}")
|
++ (lib.optional (!(isNull c.fileMode)) "file_mode=${toString c.fileMode}")
|
||||||
++ (lib.optional (!(isNull c.directoryMode)) "dir_mode=${toString c.directoryMode}")
|
++ (lib.optional (!(isNull c.directoryMode)) "dir_mode=${toString c.directoryMode}")
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue