Add lindberg

This commit is contained in:
qo.is sysadmin 2021-04-10 18:14:17 +02:00
parent 1a0d7946fb
commit de3db0d159
4 changed files with 94 additions and 0 deletions

10
hardware/asrock.nix Normal file
View file

@ -0,0 +1,10 @@
{ config, lib, pkgs, modulesPath, ... }: {
imports =
[ (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
}