Add bscpkgs and nixpkgs top level attributes

Allows the evaluation of packages of the intermediate overlays.
This commit is contained in:
Rodrigo Arias 2023-09-15 11:58:10 +02:00
parent 33cd40160e
commit 51c57dbc41

View File

@ -26,6 +26,9 @@ in
lake2 = mkConf "lake2"; 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;
};
}; };
} }