stockholm/modules/cloudkrebs/networking.nix

15 lines
260 B
Nix
Raw Normal View History

2015-05-20 21:31:52 +00:00
{...}:
{
networking.hostName = "cloudkrebs";
networking.interfaces.enp2s1.ip4 = [
{
address = "104.167.113.104";
prefixLength = 24;
}
];
networking.defaultGateway = "104.167.113.1";
networking.nameservers = [
"8.8.8.8"
];
}