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

1
.envrc Normal file
View File

@@ -0,0 +1 @@
use nix

5
.gitignore vendored
View File

@@ -3,4 +3,7 @@
main.key
# Helm Chart files
charts/
charts/
# Nix and local environment files
.direnv/

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 = {
};
}