flake: update homelab-deploy, add to devShell
All checks were successful
Run nix flake check / flake-check (push) Successful in 2m6s

Update homelab-deploy to include bugfix. Add CLI to devShell for
easier testing and deployment operations.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-02-07 05:45:54 +01:00
parent 0643f23281
commit c83218b3bc
2 changed files with 9 additions and 8 deletions

8
flake.lock generated
View File

@@ -28,11 +28,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1770437282, "lastModified": 1770439403,
"narHash": "sha256-7C6hheIP8JUkK0Aoib/lQ4xbOaXHoqSe9SJjU2u3t/Q=", "narHash": "sha256-+tg/QCkS2S8/97xp62HEF8+fc49TDz7eUS6QZP+a3hs=",
"ref": "master", "ref": "master",
"rev": "cf3b1ce2c9e85ad954d8c230161553c5473e9579", "rev": "c9b85435bac0cec1702b7678d479057c9d513e8a",
"revCount": 12, "revCount": 13,
"type": "git", "type": "git",
"url": "https://git.t-juice.club/torjus/homelab-deploy" "url": "https://git.t-juice.club/torjus/homelab-deploy"
}, },

View File

@@ -225,11 +225,12 @@
{ pkgs }: { pkgs }:
{ {
default = pkgs.mkShell { default = pkgs.mkShell {
packages = with pkgs; [ packages = [
ansible pkgs.ansible
opentofu pkgs.opentofu
openbao pkgs.openbao
(pkgs.callPackage ./scripts/create-host { }) (pkgs.callPackage ./scripts/create-host { })
homelab-deploy.packages.${pkgs.system}.default
]; ];
}; };
} }