nixcfg/hosts/rustboro/hardware-configuration.nix

30 lines
823 B
Nix
Raw Normal View History

2024-02-29 17:06:55 -05: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, ... }:
{
2024-03-24 14:06:24 -04:00
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
2024-02-29 17:06:55 -05:00
2024-03-24 14:06:24 -04:00
boot.initrd.availableKernelModules = [
"xhci_pci"
"ehci_pci"
"ahci"
"usb_storage"
"sd_mod"
"sr_mod"
"rtsx_pci_sdmmc"
];
2024-02-29 17:06:55 -05:00
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
2024-04-05 16:43:19 -04:00
fileSystems."/persist" = { neededForBoot = true; };
2024-02-29 17:06:55 -05:00
networking.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
2024-03-24 14:06:24 -04:00
hardware.cpu.intel.updateMicrocode =
lib.mkDefault config.hardware.enableRedistributableFirmware;
2024-02-29 17:06:55 -05:00
}