nfsroot: fix nfs shares fsid

This commit is contained in:
Astro 2022-06-08 22:55:48 +02:00
parent 2f64b9960a
commit 0324645bc9
1 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ in {
in ''
/var/lib/nfsroot/dacbert ${
lib.concatMapStringsSep " " (subnet:
"${subnet}(${opts "rw" 1})"
"${subnet}(${opts "rw" 0})"
) allowed
}
/var/lib/nfsroot/riscbert ${
@ -78,7 +78,7 @@ in {
}
/var/lib/dump-dvb/whoopsie ${
lib.concatMapStringsSep " " (subnet:
"${subnet}(${opts "rw" 1})"
"${subnet}(${opts "rw" 2})"
) allowed
}
'';