This repository has been archived on 2025-10-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
bscpkgs/default.nix
2023-10-31 16:52:55 +01:00

12 lines
176 B
Nix

let
bscOverlay = import ./overlay.nix;
# Pin the nixpkgs
nixpkgsPath = import ./nixpkgs.nix;
pkgs = import nixpkgsPath {
overlays = [ bscOverlay ];
};
in pkgs