mirror of
https://github.com/CHN-beta/nixos.git
synced 2026-01-12 04:39:23 +08:00
modules.system.fileSystems.nfs: fix
This commit is contained in:
@@ -10,7 +10,14 @@ inputs:
|
||||
(device:
|
||||
{
|
||||
name = device.value;
|
||||
value = { device = device.name; fsType = "nfs"; neededForBoot = true; };
|
||||
value =
|
||||
{
|
||||
device = device.name;
|
||||
fsType = "nfs";
|
||||
neededForBoot = true;
|
||||
# retry 15 minutes before giving up
|
||||
options = [ "retry=15" ];
|
||||
};
|
||||
})
|
||||
(inputs.localLib.attrsToList nfs));
|
||||
boot.initrd =
|
||||
|
||||
Reference in New Issue
Block a user