flake: fix nixpkgs config

Fixes #2942
This commit is contained in:
Gerg-L 2023-10-06 23:32:49 +00:00 committed by GitHub
parent 31a27e4806
commit b2a2133c9a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
};
};
});
};