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": {
"locked": {
"lastModified": 1742800061,
"narHash": "sha256-oDJGK1UMArK52vcW9S5S2apeec4rbfNELgc50LqiPNs=",
"lastModified": 1744536153,
"narHash": "sha256-awS2zRgF4uTwrOKwwiJcByDzDOdo3Q1rPZbiHQg/N38=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "1750f3c1c89488e2ffdd47cab9d05454dddfb734",
"rev": "18dd725c29603f582cf1900e0d25f9f1063dbf11",
"type": "github"
},
"original": {

View file

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