From 13c3897e867aff4d20b9afc4116480204bf613c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Sat, 7 Feb 2026 05:45:54 +0100 Subject: [PATCH] flake: update homelab-deploy, add to devShell Update homelab-deploy to include bugfix. Add CLI to devShell for easier testing and deployment operations. Co-Authored-By: Claude Opus 4.5 --- flake.lock | 8 ++++---- flake.nix | 9 +++++---- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/flake.lock b/flake.lock index e5f9e99..64264c2 100644 --- a/flake.lock +++ b/flake.lock @@ -28,11 +28,11 @@ ] }, "locked": { - "lastModified": 1770437282, - "narHash": "sha256-7C6hheIP8JUkK0Aoib/lQ4xbOaXHoqSe9SJjU2u3t/Q=", + "lastModified": 1770442013, + "narHash": "sha256-JZbm6X0A770bb+VlbJYvRHrVqWOSsmu6Hn4B8nvsPc8=", "ref": "master", - "rev": "cf3b1ce2c9e85ad954d8c230161553c5473e9579", - "revCount": 12, + "rev": "71d6aa8b614f557d029bfc2e64375c812ed7bc10", + "revCount": 19, "type": "git", "url": "https://git.t-juice.club/torjus/homelab-deploy" }, diff --git a/flake.nix b/flake.nix index ebd8aeb..95cbcb6 100644 --- a/flake.nix +++ b/flake.nix @@ -225,11 +225,12 @@ { pkgs }: { default = pkgs.mkShell { - packages = with pkgs; [ - ansible - opentofu - openbao + packages = [ + pkgs.ansible + pkgs.opentofu + pkgs.openbao (pkgs.callPackage ./scripts/create-host { }) + homelab-deploy.packages.${pkgs.system}.default ]; }; }