Add a git IP
This commit is contained in:
parent
fb8887a43f
commit
caa1a9be7c
|
@ -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;
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue