mirror of
https://github.com/zoriya/snow.git
synced 2025-12-05 23:06:23 +00:00
16 lines
231 B
Nix
16 lines
231 B
Nix
{pkgs ? import <nixpkgs> {}}:
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
kubectl
|
|
talosctl
|
|
talhelper
|
|
age
|
|
argocd
|
|
cmctl
|
|
kubectl-cnpg
|
|
kubernetes-helm
|
|
];
|
|
|
|
TALOSCONFIG = "./clusterconfig/talosconfig";
|
|
}
|