diff --git a/configurations/hp500281.nix b/configurations/hp500281.nix index 84db97f0..d5c107d9 100644 --- a/configurations/hp500281.nix +++ b/configurations/hp500281.nix @@ -1,4 +1,4 @@ -{ ... }: +{ lib, ... }: let inherit (builtins) readFile; in @@ -6,8 +6,24 @@ in imports = [ ../users/nrd.nix ../profiles/graphical + ../profiles/misc ]; + boot.initrd.availableKernelModules = [ + "xhci_pci" + "ehci_pci" + "ahci" + "usbhid" + "sd_mod" + ]; + + boot.kernelModules = [ "kvm-intel" ]; + + networking.networkmanager = { + enable = true; + }; + + nix.maxJobs = lib.mkDefault 4; boot.loader.systemd-boot = { enable = true;