29 lines
665 B
Nix
29 lines
665 B
Nix
|
{ config, lib, pkgs, modulesPath, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
||
|
|
||
|
boot = {
|
||
|
initrd = {
|
||
|
availableKernelModules = [ "xhci_pci" "usbhid" ];
|
||
|
kernelModules = [ ];
|
||
|
};
|
||
|
|
||
|
kernelModules = [ ];
|
||
|
extraModulePackages = [ ];
|
||
|
};
|
||
|
|
||
|
fileSystems."/" = {
|
||
|
device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888";
|
||
|
fsType = "ext4";
|
||
|
};
|
||
|
|
||
|
swapDevices = [ ];
|
||
|
|
||
|
networking.useDHCP = lib.mkDefault true;
|
||
|
# networking.interfaces.eth0.useDHCP = lib.mkDefault true;
|
||
|
# networking.interfaces.wlan0.useDHCP = lib.mkDefault true;
|
||
|
|
||
|
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
|
||
|
}
|