diff options
author | Ben Sima <ben@bsima.me> | 2019-11-14 06:34:48 -0800 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2019-11-14 06:34:48 -0800 |
commit | c2a556abd8c7d39fbbe333b514217b1e621048cb (patch) | |
tree | 8f45c5e2c49e6ac7e1a8cc8f2ca822c843726c90 /Com/RunServal/networking.nix | |
parent | c835bc51ce83d12d4cb98c3961d4a3051af60bd5 (diff) |
Re-namespace Serval under Com.Simatime
I don't have runserval.com yet, so I'm not gonna put the cart before the horse
Diffstat (limited to 'Com/RunServal/networking.nix')
-rw-r--r-- | Com/RunServal/networking.nix | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/Com/RunServal/networking.nix b/Com/RunServal/networking.nix deleted file mode 100644 index e13a6f5..0000000 --- a/Com/RunServal/networking.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ lib, ... }: { - # This file was populated at runtime with the networking - # details gathered from the active system. - networking = { - nameservers = [ - "127.0.0.53" - ]; - defaultGateway = "157.245.160.1"; - defaultGateway6 = ""; - dhcpcd.enable = false; - usePredictableInterfaceNames = lib.mkForce true; - interfaces = { - eth0 = { - ipv4.addresses = [ - { address="157.245.167.217"; prefixLength=20; } - { address="10.46.0.8"; prefixLength=16; } - ]; - ipv6.addresses = [ - { address="fe80::242a:8bff:feb7:6afb"; prefixLength=64; } - ]; - ipv4.routes = [ { address = "157.245.160.1"; prefixLength = 32; } ]; - ipv6.routes = [ { address = ""; prefixLength = 32; } ]; - }; - }; - }; - services.udev.extraRules = '' - ATTR{address}=="26:2a:8b:b7:6a:fb", NAME="eth0" - ''; -} |