nixos/machines/vetus/hardware.nix

32 lines
828 B
Nix
Raw Normal View History

2023-07-28 17:41:32 +03:00
{ config, lib, pkgs, modulesPath, ... }:
{
imports = [
(modulesPath + "/hardware/network/broadcom-43xx.nix")
(modulesPath + "/installer/scan/not-detected.nix")
];
2023-07-28 17:41:32 +03:00
boot.initrd.availableKernelModules =
[ "xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" "sdhci_pci" ];
boot.initrd.kernelModules = [ ];
2023-07-28 17:41:32 +03:00
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
fileSystems."/" = {
device = "/dev/nvme0n1p2";
fsType = "btrfs";
};
2023-07-28 17:41:32 +03:00
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/B167-E1D3";
fsType = "vfat";
};
2023-07-28 17:41:32 +03:00
swapDevices = [ ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
hardware.cpu.intel.updateMicrocode =
lib.mkDefault config.hardware.enableRedistributableFirmware;
}