From c1b04a3aa1cc99785d91ffbcce597b9c4e7976e7 Mon Sep 17 00:00:00 2001 From: David Arnold Date: Sun, 10 Jan 2021 20:02:08 -0500 Subject: [PATCH] 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. --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index f6e81cf5..79f5788d 100644 --- a/flake.nix +++ b/flake.nix @@ -64,7 +64,7 @@ let pkgs = pkgImport { inherit system; - pkgs = master; + pkgs = nixos; overlays = [ devshell.overlay ]; };