add supported filesystems
This commit is contained in:
parent
e5786d1cdf
commit
a68fbfe71e
1 changed files with 10 additions and 7 deletions
|
@ -5,7 +5,8 @@
|
||||||
imports = [ ./kernel.nix ./filesystem.nix ];
|
imports = [ ./kernel.nix ./filesystem.nix ];
|
||||||
|
|
||||||
boot = {
|
boot = {
|
||||||
initrd.luks.devices = {
|
initrd = {
|
||||||
|
luks.devices = {
|
||||||
luks0 = {
|
luks0 = {
|
||||||
allowDiscards = true;
|
allowDiscards = true;
|
||||||
bypassWorkqueues = true;
|
bypassWorkqueues = true;
|
||||||
|
@ -13,9 +14,11 @@
|
||||||
preLVM = true;
|
preLVM = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
supportedFilesystems = [ "vfat" "btrfs" ];
|
||||||
|
};
|
||||||
loader.efi.canTouchEfiVariables = true;
|
loader.efi.canTouchEfiVariables = true;
|
||||||
resumeDevice = "/dev/vg0/swap";
|
resumeDevice = "/dev/vg0/swap";
|
||||||
supportedFilesystems = [ "btrfs" ];
|
supportedFilesystems = [ "vfat" "ntfs" "exfat" "ext4" "btrfs" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
swapDevices = [{ device = "/dev/vg0/swap"; }];
|
swapDevices = [{ device = "/dev/vg0/swap"; }];
|
||||||
|
|
Loading…
Reference in a new issue