30 lines
		
	
	
		
			831 B
		
	
	
	
		
			Nix
		
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			831 B
		
	
	
	
		
			Nix
		
	
	
	
{ config, lib, pkgs, modulesPath, ... }:
 | 
						|
 | 
						|
{
 | 
						|
    imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
 | 
						|
 | 
						|
    boot.initrd.availableKernelModules =
 | 
						|
        [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
 | 
						|
    boot.kernelModules = [ "kvm-amd" ];
 | 
						|
    boot.extraModulePackages = [ ];
 | 
						|
 | 
						|
    fileSystems."/" = {
 | 
						|
        device = "/dev/disk/by-uuid/daf843cd-8e63-48ed-831a-e055929e86cb";
 | 
						|
        fsType = "ext4";
 | 
						|
    };
 | 
						|
 | 
						|
    fileSystems."/boot" = {
 | 
						|
        device = "/dev/disk/by-uuid/E1D9-7A48";
 | 
						|
        fsType = "vfat";
 | 
						|
        options = [ "fmask=0077" "dmask=0077" ];
 | 
						|
    };
 | 
						|
 | 
						|
    swapDevices = [ ];
 | 
						|
 | 
						|
    networking.useDHCP = lib.mkDefault false;
 | 
						|
 | 
						|
    nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
 | 
						|
    hardware.cpu.amd.updateMicrocode =
 | 
						|
        lib.mkDefault config.hardware.enableRedistributableFirmware;
 | 
						|
}
 |