From b2a2133c9a0b0aa4d06d72b5891275f263ee08df Mon Sep 17 00:00:00 2001 From: Gerg-L <88247690+Gerg-L@users.noreply.github.com> Date: Fri, 6 Oct 2023 23:32:49 +0000 Subject: [PATCH] flake: fix nixpkgs `config` Fixes #2942 --- flake.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index a1c81635d..a24d1967c 100644 --- a/flake.nix +++ b/flake.nix @@ -80,7 +80,10 @@ configuration = { ... }: { imports = modules ++ [{ programs.home-manager.path = toString ./.; }]; - nixpkgs = { inherit (pkgs) config overlays; }; + nixpkgs = { + config = nixpkgs.lib.mkDefault pkgs.config; + inherit (pkgs) overlays; + }; }; }); };