extended fix bc it didn't work
This commit is contained in:
parent
8a90755f14
commit
40b9733f57
1 changed files with 5 additions and 1 deletions
|
@ -21,6 +21,7 @@
|
||||||
fileSystems."/" =
|
fileSystems."/" =
|
||||||
{ device = "/dev/mapper/vg-root";
|
{ device = "/dev/mapper/vg-root";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
|
options = ["x-systemd.device-timeout=0"];
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot" =
|
fileSystems."/boot" =
|
||||||
|
@ -30,7 +31,10 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
swapDevices =
|
swapDevices =
|
||||||
[ { device = "/dev/mapper/vg-swap"; }
|
[ {
|
||||||
|
device = "/dev/mapper/vg-swap";
|
||||||
|
options = ["x-systemd.device-timeout=0"];
|
||||||
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
||||||
|
|
Loading…
Reference in a new issue