From 7cdebdedacf1dcaed6d3d3f749f90693b4debb03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alu=C3=ADsio=20Augusto=20Silva=20Gon=C3=A7alves?= Date: Tue, 3 Nov 2020 14:18:41 -0300 Subject: [PATCH] dyndnsc: Remove import fallback for default package pkgs/default.nix no longer exists, and I'm not sure we can import the root default.nix without introducing a cycle. Should someone want to use this module without our pkgs overlay, they can specify the package manually. --- modules/services/networking/dyndnsc.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/services/networking/dyndnsc.nix b/modules/services/networking/dyndnsc.nix index ee784c1..39f5b3a 100644 --- a/modules/services/networking/dyndnsc.nix +++ b/modules/services/networking/dyndnsc.nix @@ -34,7 +34,7 @@ in enable = mkEnableOption "dyndnsc Dynamic DNS client"; package = mkOption { - default = pkgs.dyndnsc or (import ../../../pkgs { inherit pkgs; }).dyndnsc; + default = pkgs.dyndnsc; defaultText = "pkgs.dyndnsc"; type = types.package; description = "dyndnsc package to use."; -- 2.30.1