usable in nix
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -4,3 +4,6 @@ main.key
|
|||||||
|
|
||||||
# Helm Chart files
|
# Helm Chart files
|
||||||
charts/
|
charts/
|
||||||
|
|
||||||
|
# Nix and local environment files
|
||||||
|
.direnv/
|
||||||
|
|||||||
15
default.nix
Normal file
15
default.nix
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
{ pkgs ? import <nixpkgs> {} }:
|
||||||
|
pkgs.mkShell {
|
||||||
|
name = "infra-shell";
|
||||||
|
|
||||||
|
|
||||||
|
buildInputs = with pkgs; [
|
||||||
|
kubeseal
|
||||||
|
yq
|
||||||
|
jq
|
||||||
|
];
|
||||||
|
|
||||||
|
env = {
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user