Files
edge-gitops/shell.nix
2026-05-05 11:38:28 -05:00

11 lines
165 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
jq
kubectl
k9s
fluxcd
];
KUBECONFIG = ./dgx-spark-kubeconfig.yaml;
}