usable in nix

This commit is contained in:
2025-10-13 11:21:39 +02:00
parent 6bcb026647
commit 8def14af64
3 changed files with 20 additions and 1 deletions

15
default.nix Normal file
View File

@@ -0,0 +1,15 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
name = "infra-shell";
buildInputs = with pkgs; [
kubeseal
yq
jq
];
env = {
};
}