Skip to content

Instantly share code, notes, and snippets.

@notgne2
Created November 21, 2019 09:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save notgne2/987c3f6a73ff88b2545fc4f9c7535595 to your computer and use it in GitHub Desktop.
Save notgne2/987c3f6a73ff88b2545fc4f9c7535595 to your computer and use it in GitHub Desktop.
{
imports =
[ <nixpkgs/nixos/modules/installer/scan/not-detected.nix>
];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/e59c4d40-effb-4f91-8fa9-9c8a524a55b8";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/88B7-BD7E";
fsType = "vfat";
};
nix.maxJobs = lib.mkDefault 16;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment