@cryptotaxi247 / infra-1 / commits / 4ca486aa

svn path=/configurations/trunk/tud/; revision=29121

svn path=/configurations/trunk/tud/; revision=29121

Eelco Dolstra committed Sep 9, 2011 at 09:24 UTC 4ca486aa480c691d7f09fc5e5f3f7c615ed43436
2 files changed +3 -15
build-machines-dell-r815.nix
+3 -3
@@ -10,7 +10,7 @@
10
11 nix.maxJobs = 48;
12
13 - fileSystems = [
14 - { device = "none"; fsType = "tmpfs"; mountPoint = "/tmp"; options = "size=16G"; neededForBoot=true; }
15 - ];
13 + fileSystems =
14 + [ { device = "none"; fsType = "tmpfs"; mountPoint = "/tmp"; options = "size=16G"; neededForBoot = true; }
15 + ];
16 }
ike.nix deleted
-12
@@ -1,12 +0,0 @@
1 -{ config, pkgs, ... }:
2 -
3 -{
4 - boot.loader.grub.version = 2;
5 - require = [ ./build-machines-common.nix ];
6 - nixpkgs.system = "x86_64-linux";
7 -
8 - boot.initrd.kernelModules = [ "megaraid_sas" "ext4" ];
9 - boot.kernelModules = [ "acpi-cpufreq" "kvm-amd" ];
10 -
11 - nix.maxJobs = 48;
12 -}