adyya-flake/cluster/packages.mod.nix
2024-11-26 15:30:26 +02:00

18 lines
447 B
Nix

{
cluster-testing.modules = [
(
{pkgs, ...}: {
environment.systemPackages = with pkgs; [
clang # this is for cilium
llvm_18 # idem
openiscsi # this is for longhorn
kubernetes-helm
cilium-cli # might not need this after all, if i try to install it using helm -e
# kubernetes
# kubectl
# kompose
];
}
)
];
}