cloudkrebs: add networking.nix

This commit is contained in:
lassulus 2015-05-20 23:31:52 +02:00
parent f8b1e849a6
commit 6c99817df0

View File

@ -0,0 +1,14 @@
{...}:
{
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"
];
}