@cryptotaxi247 / infra-1 / commits / b19264c4

Remove module for stan

Eelco Dolstra committed Mar 7, 2016 at 13:52 UTC b19264c47ff3441baa1da4448644d7ec72b44d01
2 files changed +1 -43
delft/network.nix
+1 -1
@@ -2,7 +2,7 @@
2 kenny = import ./build-machines-dell-1950.nix;
3 kyle = import ./build-machines-dell-1950.nix;
4 hydra = import ./build-machines-dell-1950.nix;
5 - stan = import ./stan.nix;
5 + stan = import ./build-machines-dell-1950.nix;
6 #cartman = import ./cartman.nix;
7 lucifer = import ./lucifer.nix;
8 wendy = import ./wendy.nix;
delft/stan.nix deleted
-42
@@ -1,42 +0,0 @@
1 -{ config, pkgs, ... }:
2 -
3 -{
4 - require = [ ./build-machines-common.nix ];
5 -
6 - nixpkgs.system = "x86_64-linux";
7 -
8 - boot.initrd.kernelModules = [ "mptsas" ];
9 - boot.kernelModules = [ "acpi-cpufreq" "kvm-intel" ];
10 -
11 - swapDevices = [ { label = "swap"; } ];
12 -
13 - nix.maxJobs = 8;
14 -
15 - /*
16 - services.httpd.enable = true;
17 - services.httpd.adminAddr = "foo@example.org";
18 -
19 - networking.firewall.enable = false;
20 - networking.firewall.allowedTCPPorts = [ 80 ];
21 - networking.firewall.rejectPackets = true;
22 - networking.firewall.allowPing = true;
23 - */
24 -
25 - /*
26 - networking.bridges.veno1.interfaces = [ config.system.build.mainPhysicalInterface ];
27 -
28 - # Libvirt dynamically creates vnet* interfaces to connect interfaces
29 - # to the veno1 bridge. So after restarting veno1, we have to add
30 - # those interfaces back in.
31 - systemd.services.veno1.postStart =
32 - ''
33 - for iface in $(cd /sys/class/net && echo vnet*); do
34 - brctl addif veno1 "$iface" || true
35 - done
36 - '';
37 -
38 - system.build.mainVirtualInterface = "veno1";
39 -
40 - virtualisation.libvirtd.enable = true;
41 - */
42 -}