Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 0 additions & 18 deletions docs/package-sets.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,3 @@
#### Nixpkgs CUDA and ROCm

See the [CUDA section of the nixpkgs manual](https://nixos.org/manual/nixpkgs/unstable/#cuda) for more information.

[CUDA and ROCm release set in nixpkgs](https://github.com/NixOS/nixpkgs/blob/master/pkgs/top-level/release-cuda.nix)

Built on `nixos-unstable-small` for `x86_64-linux`:

- [https://hydra.nix-community.org/jobset/nixpkgs/cuda](https://hydra.nix-community.org/jobset/nixpkgs/cuda)

Built on `nixos-unstable-small` for `x86_64-linux`:

- [https://hydra.nix-community.org/jobset/nixpkgs/rocm](https://hydra.nix-community.org/jobset/nixpkgs/rocm)

Built on `nixos-$RELEASE-small` for `x86_64-linux`:

- [https://hydra.nix-community.org/jobset/nixpkgs/cuda-stable](https://hydra.nix-community.org/jobset/nixpkgs/cuda-stable)

#### Nixpkgs unfree redistributable

[unfree redistributable release set in nixpkgs](https://github.com/NixOS/nixpkgs/blob/master/pkgs/top-level/release-unfree-redistributable.nix)
Expand Down
39 changes: 0 additions & 39 deletions terraform/hydra-nixpkgs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,6 @@ locals {
supported_systems = ["x86_64-freebsd"]
release_source = "https://github.com/nix-community/infra.git master"
}
cuda = {
name = "cuda"
description = "nixos-unstable-small cuda"
nixpkgs_channel = "https://github.com/NixOS/nixpkgs.git nixos-unstable-small"
release_file = "pkgs/top-level/release-cuda.nix"
check_interval = 1800
scheduling_shares = 6000
supported_systems = ["x86_64-linux"]
}
cuda_stable = {
name = "cuda-stable"
description = "nixos-25.05-small cuda"
Expand All @@ -48,25 +39,6 @@ locals {
scheduling_shares = 6000
supported_systems = ["x86_64-linux"]
}
cuda_stable_previous = {
name = "cuda-stable-previous"
description = "nixos-24.11-small cuda"
nixpkgs_channel = "https://github.com/NixOS/nixpkgs.git nixos-24.11-small"
release_file = "pkgs/top-level/release-cuda.nix"
check_interval = 1800
scheduling_shares = 6000
supported_systems = ["x86_64-linux"]
}
rocm = {
name = "rocm"
description = "nixos-unstable-small rocm"
nixpkgs_channel = "https://github.com/NixOS/nixpkgs.git nixos-unstable-small"
release_file = "pkgs/top-level/release-cuda.nix"
check_interval = 1800
scheduling_shares = 6000
supported_systems = ["x86_64-linux"]
variant = "rocm"
}
unfree_redist = {
name = "unfree-redist"
description = "nixos-unstable-small unfree+redistributable"
Expand Down Expand Up @@ -151,17 +123,6 @@ resource "hydra_jobset" "nixpkgs_jobset" {
}
}

dynamic "input" {
for_each = lookup(each.value, "variant", null) != null ? [each.value.variant] : []

content {
name = "variant"
type = "string"
value = input.value
notify_committers = false
}
}

input {
name = "officialRelease"
type = "boolean"
Expand Down