nix-config/lib/default-gateway.nix
Astro fca9a7f859 lib/default-gateway.nix: set only when running without systemd-networkd
this would need GatewayOnLink=yes for the route on the interface
2021-03-06 01:10:53 +01:00

7 lines
131 B
Nix

{ config, pkgs, lib, strings, ... }:
lib.optional !config.networking.useNetworkd
{
networking.defaultGateway = "172.22.99.4";
}