machines-config/hosts/etcd0/default.nix

19 lines
276 B
Nix
Raw Normal View History

{ ... }:
{
kropcloud =
let
serverIp = "192.168.1.161";
in
{
services = {
};
networking = {
ipv4 = {
address = serverIp;
prefixLength = 24;
defaultGateway = "192.168.1.1";
};
};
};
}