Merge remote-tracking branch 'bscpkgs/master' into monorepo

This commit is contained in:
2025-03-04 14:53:26 +01:00
107 changed files with 49064 additions and 0 deletions

View File

@@ -14,6 +14,11 @@ let
specialArgs = { inherit nixpkgs bscpkgs agenix; theFlake = self; };
modules = [ "${self.outPath}/m/${name}/configuration.nix" ];
};
pkgs = import nixpkgs {
# For now we only support x86
system = "x86_64-linux";
overlays = [ self.overlays.default ];
};
in
{
nixosConfigurations = {
@@ -32,5 +37,9 @@ in
bscpkgs = bscpkgs.packages.x86_64-linux;
nixpkgs = nixpkgs.legacyPackages.x86_64-linux;
};
bscOverlay = import ./overlay.nix;
overlays.default = self.bscOverlay;
legacyPackages.x86_64-linux = pkgs;
};
}