fix: change /frontend to /users

This commit is contained in:
Jonas Juselius
2025-09-23 12:30:18 +02:00
parent 82a5328d7f
commit e38b0a2317

View File

@@ -10,17 +10,16 @@ let
options = options =
[ "soft" "defaults" "vers=4.2" ] ++ [ "soft" "defaults" "vers=4.2" ] ++
(if cfg.automount.enable then [ "noauto" "x-systemd.automount" ] else []); (if cfg.automount.enable then [ "x-systemd.automount" ] else []);
users = users =
if cfg.users then { if cfg.users then {
"/frontend" = { "/users" = {
device = "10.255.241.100:/home"; device = "10.255.241.100:/home";
fsType = "nfs4"; fsType = "nfs4";
options = [ options = [
"soft" "soft"
"defaults" "defaults"
"noauto"
"x-systemd.automount" "x-systemd.automount"
]; ];
}; };