nixos/mini/hardware-configuration.nix

26 lines
796 B
Nix
Raw Normal View History

2023-01-15 18:56:16 +01: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, ... }:
{
imports =
[ (modulesPath + "/installer/scan/not-detected.nix")
];
2023-02-15 21:19:56 +01:00
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
2023-01-15 18:56:16 +01:00
boot.initrd.kernelModules = [ ];
2023-02-15 21:19:56 +01:00
boot.kernelModules = [ "kvm-amd" ];
2023-01-15 18:56:16 +01:00
boot.extraModulePackages = [ ];
fileSystems."/boot" =
2023-02-15 21:19:56 +01:00
{ device = "/dev/disk/by-uuid/4FD5-6BF5";
2023-01-15 18:56:16 +01:00
fsType = "vfat";
};
swapDevices = [ ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
2023-02-15 21:19:56 +01:00
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
2023-01-15 18:56:16 +01:00
}