pub-solar-os/configurations/hp500281.nix

33 lines
465 B
Nix
Raw Normal View History

2019-12-17 04:15:48 +00:00
{ lib, ... }:
let
inherit (builtins) readFile;
in
{
2019-12-15 04:37:46 +00:00
imports = [
2019-12-15 07:06:28 +00:00
../users/nrd.nix
2019-12-16 07:54:46 +00:00
../profiles/graphical
2019-12-17 04:15:48 +00:00
../profiles/misc
2019-12-15 04:37:46 +00:00
];
2019-12-17 04:15:48 +00:00
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;
editor = false;
};
}