From 1e45e959bede2b58a0eb1209c97a64ef751cbfd6 Mon Sep 17 00:00:00 2001 From: Timothy DeHerrera Date: Mon, 16 Dec 2019 21:15:48 -0700 Subject: [PATCH] hp500281: add some basics --- configurations/hp500281.nix | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) 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;