summaryrefslogtreecommitdiffstats
path: root/modules/cd/networking.nix
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2015-04-08 01:07:01 +0200
committertv <tv@krebsco.de>2015-05-19 23:16:56 +0200
commit305994b23565b3e0f73922ca219cbcb9872e4daa (patch)
tree14dd49072264f70f32d826fadc3489a7b101b62c /modules/cd/networking.nix
parentee0c09d16f1e857a9f37118babc5c2a061fa9cf1 (diff)
I Like To Move It
Diffstat (limited to 'modules/cd/networking.nix')
-rw-r--r--modules/cd/networking.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/cd/networking.nix b/modules/cd/networking.nix
new file mode 100644
index 0000000..215e208
--- /dev/null
+++ b/modules/cd/networking.nix
@@ -0,0 +1,14 @@
+{...}:
+{
+ networking.hostName = "cd";
+ networking.interfaces.enp2s1.ip4 = [
+ {
+ address = "162.219.7.216";
+ prefixLength = 24;
+ }
+ ];
+ networking.defaultGateway = "162.219.7.1";
+ networking.nameservers = [
+ "8.8.8.8"
+ ];
+}