summaryrefslogtreecommitdiffstats
path: root/networking.nix
diff options
context:
space:
mode:
authorSystem administrator <root@nixos.yourvserver.net>2023-01-06 18:18:24 +0000
committerSystem administrator <root@server1.vhack.eu>2023-01-06 18:20:30 +0000
commitd522c778c6cb892ba2f7cc95474f60efded391b6 (patch)
tree02b210cd7666db6c42cb63b718da770c01c25f26 /networking.nix
downloadnixos-server-d522c778c6cb892ba2f7cc95474f60efded391b6.zip
Initial Commit
Diffstat (limited to '')
-rw-r--r--networking.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/networking.nix b/networking.nix
new file mode 100644
index 0000000..9b254e0
--- /dev/null
+++ b/networking.nix
@@ -0,0 +1,30 @@
+{ lib, ... }: {
+ # This file was populated at runtime with the networking
+ # details gathered from the active system.
+ networking = {
+ nameservers = [ "8.8.8.8"
+ ];
+ defaultGateway = "89.58.56.1";
+ defaultGateway6 = "fe80::1";
+ dhcpcd.enable = false;
+ usePredictableInterfaceNames = lib.mkForce false;
+ interfaces = {
+ eth0 = {
+ ipv4.addresses = [
+ { address="89.58.58.33"; prefixLength=22; }
+ ];
+ ipv6.addresses = [
+ { address="2a03:4000:6a:3f3:6422:6dff:fe82:939b"; prefixLength=64; }
+{ address="fe80::6422:6dff:fe82:939b"; prefixLength=64; }
+ ];
+ ipv4.routes = [ { address = "89.58.56.1"; prefixLength = 32; } ];
+ ipv6.routes = [ { address = "fe80::1"; prefixLength = 128; } ];
+ };
+
+ };
+ };
+ services.udev.extraRules = ''
+ ATTR{address}=="66:22:6d:82:93:9b", NAME="eth0"
+
+ '';
+}