flake: Update + add helm

This commit is contained in:
Florian RICHER 2025-04-14 15:02:35 +02:00
parent 802e4c41ac
commit ff59e7977e
2 changed files with 5 additions and 4 deletions

6
flake.lock generated
View file

@ -20,11 +20,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1742800061, "lastModified": 1744536153,
"narHash": "sha256-oDJGK1UMArK52vcW9S5S2apeec4rbfNELgc50LqiPNs=", "narHash": "sha256-awS2zRgF4uTwrOKwwiJcByDzDOdo3Q1rPZbiHQg/N38=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "1750f3c1c89488e2ffdd47cab9d05454dddfb734", "rev": "18dd725c29603f582cf1900e0d25f9f1063dbf11",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -14,13 +14,14 @@
let let
pkgs = import nixpkgs { inherit system; }; pkgs = import nixpkgs { inherit system; };
in { in {
devShells = rec { devShells = {
default = pkgs.mkShell { default = pkgs.mkShell {
packages = with pkgs; [ packages = with pkgs; [
minikube minikube
kubectl kubectl
docker-machine-kvm2 # Required for run on NixOS docker-machine-kvm2 # Required for run on NixOS
sops sops
helm
]; ];
}; };
}; };