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 | 7fdc46bb9d911838edfa723d985ede6a604c0c5a (patch) | |
tree | 3ceb366c12f0bc229cfcd5fce6c2f409e29fe06b /tv/1systems/caxi.nix | |
parent | fc3f5d3d56a299b7b46c1a42d3fec57c536a5917 (diff) |
move source config from module system to 1systems/*/source.nix
Diffstat (limited to 'tv/1systems/caxi.nix')
-rw-r--r-- | tv/1systems/caxi.nix | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/tv/1systems/caxi.nix b/tv/1systems/caxi.nix deleted file mode 100644 index 59f3cd63a..000000000 --- a/tv/1systems/caxi.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ config, ... }: - -with import <stockholm/lib>; - -{ - krebs.build.host = config.krebs.hosts.caxi; - - imports = [ - ../. - ../2configs/hw/CAC-Developer-1.nix - ../2configs/fs/CAC-CentOS-7-64bit.nix - ../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"]; - }; -} |