Skip to content

Commit

Permalink
flake: add pkgs back to overlays
Browse files Browse the repository at this point in the history
Packages from `pkgs/default.nix` are meant to be exposed to all nixos
configurations. However, #61 removed a redundancy in the output api
which was  relied up to do so.
  • Loading branch information
nrdxp committed Dec 31, 2020
1 parent d14e210 commit 5b84d59
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@
externModules = [ home.nixosModules.home-manager ];

pkgset =
let overlays = (attrValues self.overlays) ++ externOverlays; in
let overlays =
(attrValues self.overlays)
++ externOverlays
++ [ self.overlay ];
in
genPkgset {
inherit master nixos overlays system;
};
Expand Down

0 comments on commit 5b84d59

Please sign in to comment.