1
0
mirror of https://github.com/kmein/niveum synced 2026-03-21 04:11:07 +01:00

systems: add wilde

This commit is contained in:
Kieran Meinhardt
2019-06-15 15:04:13 +02:00
parent 8cc38c8e4d
commit c2fd8c4d84
2 changed files with 120 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, ... }:
{
imports =
[ <nixpkgs/nixos/modules/installer/scan/not-detected.nix>
];
boot.initrd.availableKernelModules = [ "ehci_pci" "ahci" "usb_storage" "sd_mod" "sdhci_pci" ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/b700a1f4-127e-40d3-a1cf-d194785e915b";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/4474-04C0";
fsType = "vfat";
};
swapDevices =
[ { device = "/dev/disk/by-uuid/d1d62358-dce2-4081-849c-b4a9852c1c1b"; }
];
nix.maxJobs = lib.mkDefault 4;
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
}