hp500281: add some basics

This commit is contained in:
Timothy DeHerrera 2019-12-16 21:15:48 -07:00
parent 7f7fd97a31
commit 1e45e959be
No known key found for this signature in database
GPG key ID: 8985725DB5B0C122

View file

@ -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;