30 lines
787 B
Nix
30 lines
787 B
Nix
|
{ config, lib, pkgs, modulesPath, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
||
|
|
||
|
boot.initrd.availableKernelModules =
|
||
|
[ "xhci_pci" "ehci_pci" "ahci" "usb_storage" "sd_mod" "sdhci_pci" ];
|
||
|
boot.initrd.kernelModules = [ ];
|
||
|
boot.kernelModules = [ "kvm-intel" ];
|
||
|
boot.extraModulePackages = [ ];
|
||
|
|
||
|
fileSystems."/" = {
|
||
|
device = "/dev/disk/by-uuid/595d4130-1aa8-4779-9dd9-6707929f0981";
|
||
|
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";
|
||
|
fsType = "vfat";
|
||
|
};
|
||
|
|
||
|
swapDevices = [ ];
|
||
|
|
||
|
hardware.cpu.intel.updateMicrocode =
|
||
|
lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||
|
}
|