diff options
author | Adrian Kummerlaender | 2018-06-20 13:28:04 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2018-06-20 13:30:45 +0200 |
commit | 57ded1cfdfa3a3d9ac511ca8cc936983428267c5 (patch) | |
tree | 7bdfb3681e78a67cec6866ab8d1dab2b8d625b35 /host/hardware | |
parent | cf1540d975d9dfbb2b830ed90a83e8380047f942 (diff) | |
download | nixos_system-57ded1cfdfa3a3d9ac511ca8cc936983428267c5.tar nixos_system-57ded1cfdfa3a3d9ac511ca8cc936983428267c5.tar.gz nixos_system-57ded1cfdfa3a3d9ac511ca8cc936983428267c5.tar.bz2 nixos_system-57ded1cfdfa3a3d9ac511ca8cc936983428267c5.tar.lz nixos_system-57ded1cfdfa3a3d9ac511ca8cc936983428267c5.tar.xz nixos_system-57ded1cfdfa3a3d9ac511ca8cc936983428267c5.tar.zst nixos_system-57ded1cfdfa3a3d9ac511ca8cc936983428267c5.zip |
Split host-specific configuration
Managed using "host/current.nix" symlink.
Diffstat (limited to 'host/hardware')
-rw-r--r-- | host/hardware/asterix.nix | 31 | ||||
-rw-r--r-- | host/hardware/obelix.nix | 31 |
2 files changed, 62 insertions, 0 deletions
diff --git a/host/hardware/asterix.nix b/host/hardware/asterix.nix new file mode 100644 index 0000000..a0412d5 --- /dev/null +++ b/host/hardware/asterix.nix @@ -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/2f564c2d-d300-4712-a578-1cd77fcaa40d"; + fsType = "ext4"; + }; + + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/ded323eb-84de-4ff5-8570-8f50e93a862e"; + fsType = "ext2"; + }; + + swapDevices = + [ { device = "/dev/disk/by-uuid/79b17f7c-a47e-45ea-b755-d05065a05734"; } + ]; + + nix.maxJobs = lib.mkDefault 4; + powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; +} diff --git a/host/hardware/obelix.nix b/host/hardware/obelix.nix new file mode 100644 index 0000000..769981a --- /dev/null +++ b/host/hardware/obelix.nix @@ -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 = [ "xhci_pci" "ehci_pci" "ahci" "sd_mod" "sr_mod" ]; + boot.kernelModules = [ "kvm-intel" ]; + boot.extraModulePackages = [ ]; + + fileSystems."/" = + { device = "/dev/disk/by-uuid/ac766046-c9cd-4771-b591-f74d50aa8500"; + fsType = "ext4"; + }; + + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/20ea14b0-33ef-4fa1-a861-fd1156a0b60d"; + fsType = "ext2"; + }; + + swapDevices = + [ { device = "/dev/disk/by-uuid/0732dc69-7d30-4e99-af6d-d12b927945eb"; } + ]; + + nix.maxJobs = lib.mkDefault 8; + powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand"; +} |