From be3388e91dcb4b39ccf273fb1a07795bc9204e5b Mon Sep 17 00:00:00 2001 From: Ingolf Wagner Date: Sun, 1 Sep 2024 14:40:30 +0700 Subject: [PATCH] fix: flakeModule with pkgs containing overlays --- flake-module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake-module.nix b/flake-module.nix index d518ade..c540fcd 100644 --- a/flake-module.nix +++ b/flake-module.nix @@ -56,7 +56,7 @@ in { pkgs = mkOption { type = types.unspecified; description = "The package set to use for the topology evaluation on this system."; - default = pkgs; + default = pkgs.extend (import ./pkgs/default.nix); defaultText = lib.literalExpression "pkgs # (module argument)"; }; modules = mkOption {