Update systems/aurora.nix

This commit is contained in:
Julian Sutter 2023-01-24 21:58:07 +00:00
parent 2c0a32f00d
commit 62920a5ff0

View file

@ -1,8 +1,12 @@
{ config, lib, pkgs, modulesPath, ... }:
{ config, pkgs, ... }:
{ {
imports = boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" ];
[ boot.initrd.kernelModules = [ ];
]; boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
hardware.video.hidpi.enable = lib.mkDefault true;
} }