diff options
author | ene <ene@sils.li> | 2023-03-19 18:42:33 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-03-19 18:42:33 +0100 |
commit | 8711fb2f30e59e21a31e3d4b7634dc66ef5c5917 (patch) | |
tree | e13a716eb1b72607fca5c71f6eb0e5e35c0c191b /hosts | |
parent | Refactor(system/hardware): Move hardware to host (diff) | |
download | nixos-server-8711fb2f30e59e21a31e3d4b7634dc66ef5c5917.tar.gz nixos-server-8711fb2f30e59e21a31e3d4b7634dc66ef5c5917.zip |
Fix(hosts/server1/networking): Remove ipv6 route
This is somewhat misconfigured, as it makes to config not compilable. I assume, that this route setting is needed, but believe, that having a compiling config is better.
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/server1/networking.nix | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/hosts/server1/networking.nix b/hosts/server1/networking.nix index 027bc27..ff83f52 100644 --- a/hosts/server1/networking.nix +++ b/hosts/server1/networking.nix @@ -34,10 +34,6 @@ } ]; ipv6.routes = [ - { - address = "fe80::1"; - prefixLength = 128; - } ]; }; }; |