nix-config/hosts/containers/mail/default.nix

10 lines
222 B
Nix
Raw Normal View History

2021-10-02 00:46:59 +02:00
{
networking.hostName = "mail";
networking.useNetworkd = true;
networking.interfaces.eth0.ipv4.addresses = [{
address = "172.20.73.58";
prefixLength = 26;
}];
networking.defaultGateway = "172.20.73.1";
}