dotfiles/hosts/desktop/hardware-configuration.nix

31 lines
924 B
Nix
Raw Normal View History

2022-04-27 01:36:16 +00:00
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{
2022-04-29 01:56:21 +00:00
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
2022-04-27 01:36:16 +00:00
2022-04-29 01:56:21 +00:00
boot.initrd.availableKernelModules =
[ "xhci_pci" "ahci" "nvme" "usb_storage" "usbhid" "sd_mod" ];
2022-04-27 01:36:16 +00:00
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
2022-04-29 01:56:21 +00:00
fileSystems."/" = {
device = "/dev/disk/by-uuid/f0313f58-971a-46e3-9191-909fe5eb7f7e";
fsType = "ext4";
};
2022-04-27 01:36:16 +00:00
2022-04-29 01:56:21 +00:00
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/FB26-799C";
fsType = "vfat";
};
2022-04-27 01:36:16 +00:00
swapDevices = [ ];
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
2022-04-29 01:56:21 +00:00
hardware.cpu.intel.updateMicrocode =
lib.mkDefault config.hardware.enableRedistributableFirmware;
2022-04-27 01:36:16 +00:00
}