35 lines
782 B
Nix
35 lines
782 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
/* Begin hardware configuration section */
|
||
|
boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" "sr_mod" ];
|
||
|
boot.kernelModules = [ "kvm-intel" ];
|
||
|
boot.extraModulePackages = [ ];
|
||
|
swapDevices = [ ];
|
||
|
nix.maxJobs = pkgs.lib.mkDefault 8;
|
||
|
powerManagement.cpuFreqGovernor = pkgs.lib.mkDefault "powersave";
|
||
|
hardware.enableRedistributableFirmware = true;
|
||
|
/* End hardware configuration section */
|
||
|
|
||
|
boot.loader.grub = {
|
||
|
enable = true;
|
||
|
version = 2;
|
||
|
device = "/dev/sda";
|
||
|
};
|
||
|
|
||
|
fileSystems = {
|
||
|
"/" = {
|
||
|
device = "/dev/disk/by-label/nix";
|
||
|
fsType = "ext4";
|
||
|
};
|
||
|
"/boot" = {
|
||
|
device = "/dev/disk/by-label/boot";
|
||
|
fsType = "ext4";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
# networking = {
|
||
|
# hostName = "workbot";
|
||
|
# };
|
||
|
}
|