51 lines
999 B
Nix
51 lines
999 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
modulesPath,
|
||
|
...
|
||
|
}:
|
||
|
|
||
|
{
|
||
|
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
||
|
|
||
|
boot = {
|
||
|
initrd = {
|
||
|
availableKernelModules = [
|
||
|
"ehci_pci"
|
||
|
"ahci"
|
||
|
"mpt3sas"
|
||
|
"usbhid"
|
||
|
"sd_mod"
|
||
|
];
|
||
|
kernelModules = [ ];
|
||
|
};
|
||
|
kernelModules = [ "kvm-intel" ];
|
||
|
extraModulePackages = [ ];
|
||
|
};
|
||
|
|
||
|
fileSystems."/" = {
|
||
|
device = "/dev/disk/by-uuid/92bf4d66-2693-4eca-9b26-f86ae09d468d";
|
||
|
fsType = "ext4";
|
||
|
};
|
||
|
|
||
|
boot.initrd.luks.devices."mainfs" = {
|
||
|
device = "/dev/disk/by-uuid/26f9737b-28aa-4c3f-bd3b-b028283cef88";
|
||
|
keyFileSize = 1;
|
||
|
keyFile = "/dev/zero";
|
||
|
};
|
||
|
|
||
|
fileSystems."/boot" = {
|
||
|
device = "/dev/disk/by-uuid/280C-8844";
|
||
|
fsType = "vfat";
|
||
|
options = [
|
||
|
"fmask=0022"
|
||
|
"dmask=0022"
|
||
|
];
|
||
|
};
|
||
|
|
||
|
swapDevices = [ ];
|
||
|
|
||
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||
|
}
|