diff options
author | tv <tv@krebsco.de> | 2017-07-06 21:47:47 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2017-07-10 11:05:48 +0200 |
commit | 112a652a9866d18263790ce5232459d4abf042b6 (patch) | |
tree | e953f148307fe2f1692c4925302a81515a2eaa39 /tv/1systems/caxi | |
parent | 585c3f70f1f8fe07b977524375244ab6d1953219 (diff) |
move source config from module system to 1systems/*/source.nix
Diffstat (limited to 'tv/1systems/caxi')
-rw-r--r-- | tv/1systems/caxi/config.nix | 25 | ||||
-rw-r--r-- | tv/1systems/caxi/source.nix | 3 |
2 files changed, 28 insertions, 0 deletions
diff --git a/tv/1systems/caxi/config.nix b/tv/1systems/caxi/config.nix new file mode 100644 index 0000000..b136d1a --- /dev/null +++ b/tv/1systems/caxi/config.nix @@ -0,0 +1,25 @@ +{ config, ... }: + +with import <stockholm/lib>; + +{ + krebs.build.host = config.krebs.hosts.caxi; + + imports = [ + <stockholm/tv> + <stockholm/tv/2configs/hw/CAC-Developer-1.nix> + <stockholm/tv/2configs/fs/CAC-CentOS-7-64bit.nix> + <stockholm/tv/2configs/retiolum.nix> + ]; + + networking = let + inherit (config.krebs.build.host.nets.internet) ip4; + in { + interfaces.enp2s1.ip4 = singleton { + address = ip4.addr; + prefixLength = fromJSON (head (match ".*/([0-9]+)" ip4.prefix)); + }; + defaultGateway = head (match "([^/]*)\.0/[0-9]+" ip4.prefix) + ".1"; + nameservers = ["8.8.8.8"]; + }; +} diff --git a/tv/1systems/caxi/source.nix b/tv/1systems/caxi/source.nix new file mode 100644 index 0000000..bc875b7 --- /dev/null +++ b/tv/1systems/caxi/source.nix @@ -0,0 +1,3 @@ +import <stockholm/tv/source.nix> { + name = "caxi"; +} |