2023-09-09 19:22:11 +02:00
|
|
|
{...}: {
|
2023-09-09 15:21:27 +02:00
|
|
|
config = {
|
2023-09-10 14:12:01 +02:00
|
|
|
my.hardware.common-desktop.enable = true;
|
|
|
|
|
2023-09-09 15:21:27 +02:00
|
|
|
boot = {
|
|
|
|
initrd.availableKernelModules = ["xhci_pci" "ehci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" "sdhci_pci"];
|
|
|
|
initrd.kernelModules = [];
|
|
|
|
kernelModules = ["kvm-intel"];
|
|
|
|
extraModulePackages = [];
|
|
|
|
loader.efi.efiSysMountPoint = "/boot/efi";
|
|
|
|
};
|
|
|
|
|
|
|
|
fileSystems = {
|
|
|
|
"/" = {
|
|
|
|
device = "/dev/disk/by-uuid/34cb86c4-8823-4785-9672-92ef0bcd5eaf";
|
|
|
|
fsType = "btrfs";
|
|
|
|
options = ["subvol=@"];
|
|
|
|
};
|
|
|
|
|
|
|
|
"/boot/efi" = {
|
|
|
|
device = "/dev/disk/by-uuid/2381-1CD2";
|
|
|
|
fsType = "vfat";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
swapDevices = [
|
|
|
|
{device = "/dev/disk/by-uuid/f5932f70-60e4-4abe-b23d-2cab3c095c7d";}
|
|
|
|
];
|
|
|
|
|
2023-09-09 19:22:11 +02:00
|
|
|
hardware.cpu.intel.updateMicrocode = true;
|
2023-09-09 15:21:27 +02:00
|
|
|
};
|
|
|
|
}
|