Evaluate exported pkgs against repo baseline nixos

The baseline pkgs for own consumption is nixos, only pkgs/override.nix
provides a mechanism to "backport" packages from unstable.

Therefore, we should expose our packages to others in the same
context as we use them ourselves.
This commit is contained in:
David Arnold 2021-01-10 20:02:08 -05:00 committed by GitHub
parent d0fe508da2
commit c1b04a3aa1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -64,7 +64,7 @@
let
pkgs = pkgImport {
inherit system;
pkgs = master;
pkgs = nixos;
overlays = [ devshell.overlay ];
};