chore(probook): new ssd

This commit is contained in:
catvayor 2025-07-21 11:25:18 +02:00
parent 5c969fed99
commit a4b8dd3b6c
Signed by: lbailly
GPG key ID: CE3E645251AC63F3

View file

@ -6,7 +6,9 @@
}:
{
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
];
boot = {
initrd = {
@ -19,11 +21,7 @@
"rtsx_pci_sdmmc"
];
kernelModules = [ ];
luks.devices."dec-lin" = {
device = "/dev/disk/by-uuid/bba45bff-2356-4ec7-a20c-9cbf9d992822";
preLVM = true;
allowDiscards = true;
};
luks.devices."dec-lin".device = "/dev/disk/by-uuid/a351fc0d-ea8f-4334-8aea-a73b7fa0f157";
};
kernelModules = [ "kvm-intel" ];
extraModulePackages = [ ];
@ -31,17 +29,23 @@
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/4c1f76c6-5ce6-4987-b15e-9419627b7f19";
fsType = "bcachefs";
device = "/dev/disk/by-uuid/92c87488-0104-4e96-86b1-dd4782ca21da";
fsType = "xfs";
};
"/boot" = {
device = "/dev/disk/by-uuid/4F30-BEC7";
device = "/dev/disk/by-uuid/7CE2-77BC";
fsType = "vfat";
options = [
"fmask=0022"
"dmask=0022"
];
};
};
swapDevices = [ { device = "/dev/disk/by-uuid/5edcb909-6109-4198-84c7-703cbd471b44"; } ];
swapDevices = [
{ device = "/dev/disk/by-uuid/e947dd69-6686-4db5-912a-df746b01f724"; }
];
networking.useDHCP = lib.mkDefault true;