diff --git a/config/host-config/procul.nix b/config/host-config/procul.nix index f2a4d5b..46f1d7f 100644 --- a/config/host-config/procul.nix +++ b/config/host-config/procul.nix @@ -4,6 +4,7 @@ with lib; let hostname = "procul"; host-ipv4 = "172.86.179.18"; + git-ipv4 = "172.86.179.19"; domain = config.fudo.hosts.${hostname}.domain; site = config.fudo.hosts.${hostname}.site; host-fqdn = "${hostname}.${domain}"; @@ -31,10 +32,16 @@ in { interfaces = { extif0 = { - ipv4.addresses = [{ - address = host-ipv4; - prefixLength = 29; - }]; + ipv4.addresses = [ + { + address = host-ipv4; + prefixLength = 29; + } + { + address = git-ipv4; + prefixLength = 29; + } + ]; }; }; };