summaryrefslogtreecommitdiffstats
path: root/1systems
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2015-09-27 15:23:54 +0200
committermakefu <github@syntax-fehler.de>2015-09-27 15:24:27 +0200
commitf00d81c9aa669c9f7195ff69ca427c5788ed3ae8 (patch)
tree84572357cdc45a6e458e832a978b1d226dc90b9d /1systems
parent8a23b8234ad6f0c8eb0ae17bc7d0d1ff36518b81 (diff)
3modules: add wry
Diffstat (limited to '1systems')
-rw-r--r--1systems/wry.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/1systems/wry.nix b/1systems/wry.nix
new file mode 100644
index 000000000..29ad82d4c
--- /dev/null
+++ b/1systems/wry.nix
@@ -0,0 +1,34 @@
+{ config, lib, pkgs, ... }:
+
+let
+
+ ip = (lib.elemAt config.krebs.build.host.nets.internet.addrs4 0);
+in {
+ imports = [
+ ../../tv/2configs/CAC-CentOS-7-64bit.nix
+ ../2configs/base.nix
+ ../2configs/tinc-basic-retiolum.nix
+ {
+ }
+ ];
+ networking.firewall.allowPing = true;
+ networking.interfaces.enp2s1.ip4 = [
+ {
+ address = ip;
+ prefixLength = 24;
+ }
+ ];
+ networking.defaultGateway = "104.233.80.1";
+ networking.nameservers = [
+ "8.8.8.8"
+ ];
+
+ # based on ../../tv/2configs/CAC-Developer-2.nix
+ sound.enable = false;
+ krebs.build = {
+ user = config.krebs.users.makefu;
+ target = "root@${ip}";
+ host = config.krebs.hosts.wry;
+ };
+
+}