about summary refs log tree commit diff
path: root/nixos/modules/tasks
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2024-05-17 18:21:52 +0200
committerMaximilian Bosch <maximilian@mbosch.me>2024-05-20 17:26:42 +0200
commitc4fd7cf16d531b09c6178294f5cdaaaa2bc55b01 (patch)
tree4127f1b859e63a12af353940c8a5fc1adbda3637 /nixos/modules/tasks
parent805191d9fbdc76cedb8cc7712415f766c6220d6b (diff)
downloadnixlib-c4fd7cf16d531b09c6178294f5cdaaaa2bc55b01.tar
nixlib-c4fd7cf16d531b09c6178294f5cdaaaa2bc55b01.tar.gz
nixlib-c4fd7cf16d531b09c6178294f5cdaaaa2bc55b01.tar.bz2
nixlib-c4fd7cf16d531b09c6178294f5cdaaaa2bc55b01.tar.lz
nixlib-c4fd7cf16d531b09c6178294f5cdaaaa2bc55b01.tar.xz
nixlib-c4fd7cf16d531b09c6178294f5cdaaaa2bc55b01.tar.zst
nixlib-c4fd7cf16d531b09c6178294f5cdaaaa2bc55b01.zip
nixos/networkd: get rid of *Config attributes in lists
This patch is about removing `wireguardPeerConfig`,
`dhcpServerStaticLeaseConfig` - a.k.a. the
AbstractSingletonProxyFactoryBean of nixpkgs - and friends.

As a former colleague said

> worst abstraction ever

I second that. I've written enough networkd config for NixOS systems so
far to have a strong dislike. In fact, these don't even make sense:
`netdevs.wireguardPeers._.wireguardPeerConfig` will be rendered into
the key `[WireGuardPeer]` and every key from `wireguardPeerConfig` is in
there. Since it's INI, there's no place where sections on the same level
as wireguardPeerConfig fit into. Hence, get rid of it all.

For the transition, using the old way is still allowed, but gives a
warning. I think we could drop this after one release.

The tests of rosenpass and systemd-networkd-dhcpserver-static-leases
were broken on the rev before, hence they were updated, but are still
not building.
Diffstat (limited to 'nixos/modules/tasks')
-rw-r--r--nixos/modules/tasks/network-interfaces-systemd.nix120
1 files changed, 59 insertions, 61 deletions
diff --git a/nixos/modules/tasks/network-interfaces-systemd.nix b/nixos/modules/tasks/network-interfaces-systemd.nix
index 2009c9a7e6e2..4bb0cd1857d2 100644
--- a/nixos/modules/tasks/network-interfaces-systemd.nix
+++ b/nixos/modules/tasks/network-interfaces-systemd.nix
@@ -32,13 +32,13 @@ let
     optionalAttrs (gateway != null && gateway.interface != null) {
       networks."40-${gateway.interface}" = {
         matchConfig.Name = gateway.interface;
-        routes = [{
-          routeConfig = {
+        routes = [
+          ({
             Gateway = gateway.address;
           } // optionalAttrs (gateway.metric != null) {
             Metric = gateway.metric;
-          };
-        }];
+          })
+        ];
       };
     }
   ));
@@ -95,65 +95,63 @@ let
       address = forEach (interfaceIps i)
         (ip: "${ip.address}/${toString ip.prefixLength}");
       routes = forEach (interfaceRoutes i)
-        (route: {
+        (route:
           # Most of these route options have not been tested.
           # Please fix or report any mistakes you may find.
-          routeConfig =
-            optionalAttrs (route.address != null && route.prefixLength != null) {
-              Destination = "${route.address}/${toString route.prefixLength}";
-            } //
-            optionalAttrs (route.options ? fastopen_no_cookie) {
-              FastOpenNoCookie = route.options.fastopen_no_cookie;
-            } //
-            optionalAttrs (route.via != null) {
-              Gateway = route.via;
-            } //
-            optionalAttrs (route.type != null) {
-              Type = route.type;
-            } //
-            optionalAttrs (route.options ? onlink) {
-              GatewayOnLink = true;
-            } //
-            optionalAttrs (route.options ? initrwnd) {
-              InitialAdvertisedReceiveWindow = route.options.initrwnd;
-            } //
-            optionalAttrs (route.options ? initcwnd) {
-              InitialCongestionWindow = route.options.initcwnd;
-            } //
-            optionalAttrs (route.options ? pref) {
-              IPv6Preference = route.options.pref;
-            } //
-            optionalAttrs (route.options ? mtu) {
-              MTUBytes = route.options.mtu;
-            } //
-            optionalAttrs (route.options ? metric) {
-              Metric = route.options.metric;
-            } //
-            optionalAttrs (route.options ? src) {
-              PreferredSource = route.options.src;
-            } //
-            optionalAttrs (route.options ? protocol) {
-              Protocol = route.options.protocol;
-            } //
-            optionalAttrs (route.options ? quickack) {
-              QuickAck = route.options.quickack;
-            } //
-            optionalAttrs (route.options ? scope) {
-              Scope = route.options.scope;
-            } //
-            optionalAttrs (route.options ? from) {
-              Source = route.options.from;
-            } //
-            optionalAttrs (route.options ? table) {
-              Table = route.options.table;
-            } //
-            optionalAttrs (route.options ? advmss) {
-              TCPAdvertisedMaximumSegmentSize = route.options.advmss;
-            } //
-            optionalAttrs (route.options ? ttl-propagate) {
-              TTLPropagate = route.options.ttl-propagate == "enabled";
-            };
-        });
+          optionalAttrs (route.address != null && route.prefixLength != null) {
+            Destination = "${route.address}/${toString route.prefixLength}";
+          } //
+          optionalAttrs (route.options ? fastopen_no_cookie) {
+            FastOpenNoCookie = route.options.fastopen_no_cookie;
+          } //
+          optionalAttrs (route.via != null) {
+            Gateway = route.via;
+          } //
+          optionalAttrs (route.type != null) {
+            Type = route.type;
+          } //
+          optionalAttrs (route.options ? onlink) {
+            GatewayOnLink = true;
+          } //
+          optionalAttrs (route.options ? initrwnd) {
+            InitialAdvertisedReceiveWindow = route.options.initrwnd;
+          } //
+          optionalAttrs (route.options ? initcwnd) {
+            InitialCongestionWindow = route.options.initcwnd;
+          } //
+          optionalAttrs (route.options ? pref) {
+            IPv6Preference = route.options.pref;
+          } //
+          optionalAttrs (route.options ? mtu) {
+            MTUBytes = route.options.mtu;
+          } //
+          optionalAttrs (route.options ? metric) {
+            Metric = route.options.metric;
+          } //
+          optionalAttrs (route.options ? src) {
+            PreferredSource = route.options.src;
+          } //
+          optionalAttrs (route.options ? protocol) {
+            Protocol = route.options.protocol;
+          } //
+          optionalAttrs (route.options ? quickack) {
+            QuickAck = route.options.quickack;
+          } //
+          optionalAttrs (route.options ? scope) {
+            Scope = route.options.scope;
+          } //
+          optionalAttrs (route.options ? from) {
+            Source = route.options.from;
+          } //
+          optionalAttrs (route.options ? table) {
+            Table = route.options.table;
+          } //
+          optionalAttrs (route.options ? advmss) {
+            TCPAdvertisedMaximumSegmentSize = route.options.advmss;
+          } //
+          optionalAttrs (route.options ? ttl-propagate) {
+            TTLPropagate = route.options.ttl-propagate == "enabled";
+          });
       networkConfig.IPv6PrivacyExtensions = "kernel";
       linkConfig = optionalAttrs (i.macAddress != null) {
         MACAddress = i.macAddress;