Files
snow/shell.nix
2025-06-28 15:41:22 +02:00

12 lines
173 B
Nix

{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
packages = with pkgs; [
kubectl
talosctl
talhelper
age
];
TALOSCONFIG = "./clusterconfig/talosconfig";
}