{ config, lib, pkgs, modulesPath, ... }: { imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; # === Boot options === boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usbhid" "uas" "usb_storage" "sd_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; # === Internal drive === fileSystems."/" = { device = "zroot/safe/root"; fsType = "zfs"; }; fileSystems."/nix" = { device = "zroot/local/nix"; fsType = "zfs"; }; fileSystems."/var/log/journal" = { device = "zroot/safe/journal"; fsType = "zfs"; }; fileSystems."/boot" = { device = "/dev/disk/by-uuid/8BB2-9DCB"; fsType = "vfat"; }; # === Swap === swapDevices = [{ device = "/dev/disk/by-uuid/efc7e294-1c18-4dd9-aca5-f868eb9c47fc"; }]; }