Switch off of bcachefs on tesco
This commit is contained in:
parent
675b652d04
commit
18d2b64d43
1 changed files with 16 additions and 8 deletions
|
@ -30,26 +30,34 @@
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
|
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
|
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" "bcache" ];
|
||||||
|
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [ ];
|
||||||
|
|
||||||
boot.supportedFilesystems = ["bcachefs"];
|
boot.initrd.luks.devices = {
|
||||||
boot.initrd.supportedFilesystems = ["bcachefs"];
|
hdd-root = {
|
||||||
|
device = "/dev/disk/by-uuid/ed9e294f-514f-48c1-ad88-1a4b5b65da37";
|
||||||
|
preLVM = true;
|
||||||
|
};
|
||||||
|
ssd-root = {
|
||||||
|
device = "/dev/disk/by-uuid/9e30b5f5-9485-45e9-8ee5-129ff17a2562";
|
||||||
|
preLVM = true;
|
||||||
|
allowDiscards = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
fileSystems."/" =
|
fileSystems."/" =
|
||||||
{ device = "/dev/sda2:/dev/sdb1";
|
{ device = "/dev/bcache0";
|
||||||
fsType = "bcachefs";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot" =
|
fileSystems."/boot" =
|
||||||
{ device = "/dev/disk/by-uuid/1367-B5C7";
|
{ device = "/dev/disk/by-label/BOOT";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
};
|
};
|
||||||
|
|
||||||
swapDevices =
|
swapDevices =
|
||||||
[ { device = "/dev/disk/by-uuid/48286351-d82d-40aa-b4ed-14b742b31ea0"; }
|
[ { device = "/dev/disk/by-label/ssd-swap"; }
|
||||||
{ device = "/dev/disk/by-uuid/8da30234-1932-4ec2-bb30-6ab268c669ee"; }
|
|
||||||
];
|
];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue