diff options
author | makefu <github@syntax-fehler.de> | 2021-02-11 14:06:45 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2021-02-11 14:06:45 +0100 |
commit | 540e13721d85dcf100bf3529414d96cd8e28a446 (patch) | |
tree | 7db6b3955f8f06af83434027e4825f8b160ba9d4 /tv/2configs/ppp.nix | |
parent | 38bddfd404b4418b4e820dfbd312145fc6abca68 (diff) | |
parent | d0e7bc46b4cdb15f7505aa069ac29588b02ddf92 (diff) |
Merge remote-tracking branch 'lass/master'
Diffstat (limited to 'tv/2configs/ppp.nix')
-rw-r--r-- | tv/2configs/ppp.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tv/2configs/ppp.nix b/tv/2configs/ppp.nix index ff61f943f..c801401b2 100644 --- a/tv/2configs/ppp.nix +++ b/tv/2configs/ppp.nix @@ -8,8 +8,10 @@ in { assertions = [ { - assertion = config.networking.resolvconf.enable; - message = "ppp configuration needs resolvconf"; + assertion = + config.networking.resolvconf.enable || + config.networking.useNetworkd; + message = "ppp configuration needs resolvconf or networkd"; } ]; environment.etc."ppp/ip-up".source = pkgs.writeDash "ppp.ip-up" '' |