feat(hardware/latitude-e7440): new SSD

This commit is contained in:
Malte Tammena 2024-02-13 18:20:14 +01:00
parent 535904dfe3
commit dcddbf4f04

View file

@ -12,18 +12,22 @@
boot.extraModulePackages = [];
fileSystems."/" = {
device = "/dev/disk/by-uuid/595d4130-1aa8-4779-9dd9-6707929f0981";
label = "root";
fsType = "ext4";
};
boot.initrd.luks.devices."nixos".device = "/dev/disk/by-uuid/52caf614-e56e-46f4-9604-222ea98fc106";
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/D70A-4148";
label = "boot";
fsType = "vfat";
options = [
"fmask=0077"
"dmask=0077"
];
};
swapDevices = [];
swapDevices = [
{label = "swap";}
];
hardware.cpu.intel.updateMicrocode =
lib.mkDefault config.hardware.enableRedistributableFirmware;