Remove bscpkgs input

Reviewed-by: Aleix Boné <abonerib@bsc.es>
This commit is contained in:
2025-10-07 12:36:33 +02:00
parent b1a37ae1fe
commit 188ba6df0a
3 changed files with 4 additions and 33 deletions

View File

@@ -3,15 +3,13 @@
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
agenix.url = "github:ryantm/agenix";
agenix.inputs.nixpkgs.follows = "nixpkgs";
bscpkgs.url = "git+https://git.sr.ht/~rodarima/bscpkgs";
bscpkgs.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { self, nixpkgs, agenix, bscpkgs, ... }:
outputs = { self, nixpkgs, agenix, ... }:
let
mkConf = name: nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit nixpkgs bscpkgs agenix; theFlake = self; };
specialArgs = { inherit nixpkgs agenix; theFlake = self; };
modules = [ "${self.outPath}/m/${name}/configuration.nix" ];
};
# For now we only support x86
@@ -38,11 +36,6 @@ in
weasel = mkConf "weasel";
};
#packages.x86_64-linux = self.nixosConfigurations.hut.pkgs // {
# bscpkgs = bscpkgs.packages.x86_64-linux;
# nixpkgs = nixpkgs.legacyPackages.x86_64-linux;
#};
bscOverlay = import ./overlay.nix;
overlays.default = self.bscOverlay;