From 51c57dbc4110a3370fc6590b35e4f28e737092b3 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Fri, 15 Sep 2023 11:58:10 +0200 Subject: [PATCH] Add bscpkgs and nixpkgs top level attributes Allows the evaluation of packages of the intermediate overlays. --- flake.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index d9fd95f..b74cd8e 100644 --- a/flake.nix +++ b/flake.nix @@ -26,6 +26,9 @@ in lake2 = mkConf "lake2"; }; - packages.x86_64-linux = self.nixosConfigurations.hut.pkgs; + packages.x86_64-linux = self.nixosConfigurations.hut.pkgs // { + bscpkgs = bscpkgs.packages.x86_64-linux; + nixpkgs = nixpkgs.legacyPackages.x86_64-linux; + }; }; }