summaryrefslogtreecommitdiffstats
path: root/old/modules/cd/networking.nix
diff options
context:
space:
mode:
Diffstat (limited to 'old/modules/cd/networking.nix')
-rw-r--r--old/modules/cd/networking.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/old/modules/cd/networking.nix b/old/modules/cd/networking.nix
new file mode 100644
index 00000000..215e2082
--- /dev/null
+++ b/old/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"
+ ];
+}