1
0
Fork 0

fix davfs gid

This commit is contained in:
ibizaman 2024-09-03 07:07:13 +02:00 committed by Pierre Penninckx
parent 3a44530844
commit ff5a13c6ce

View file

@ -87,7 +87,7 @@ in
where = c.mountPoint;
options = lib.concatStringsSep "," (
(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.directoryMode)) "dir_mode=${toString c.directoryMode}")
);