svn path=/configurations/trunk/tud/; revision=28491
svn path=/configurations/trunk/tud/; revision=28491
Eelco Dolstra committed
Aug 11, 2011 at 12:33 UTC
366e45730e6f9cbb79014bffe0322e4ca322ed77
1 file changed
+16
build-machines-dell-r815.nix
new
+16
@@ -0,0 +1,16 @@
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
+
13
+ fileSystems = [
14
+ { device = "none"; fsType = "tmpfs"; mountPoint = "/tmp"; options = "size=16G"; neededForBoot=true; }
15
+ ];
16
+}