refactored laptop

This commit is contained in:
Greg Leyda 2022-08-11 00:17:32 -04:00 committed by ISnortPennies
parent 90f4fe847a
commit 4421b50958

View file

@ -29,5 +29,19 @@
extraGroups = [ "wheel" "audio" "networkmanager"];
};
};
boot = {
initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" ];
kernelModules = [ "kvm-amd" ];
};
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/c67796b3-d502-47db-8d0e-48f30bc91041";
fsType = "ext4";
};
"/boot" = {
device = "/dev/disk/by-uuid/AD02-10EA";
fsType = "vfat";
};
};
}