add-deploy-homelab #28

Merged
torjus merged 5 commits from add-deploy-homelab into master 2026-02-07 05:56:52 +00:00
2 changed files with 9 additions and 8 deletions
Showing only changes of commit 13c3897e86 - Show all commits

8
flake.lock generated
View File

@@ -28,11 +28,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1770437282, "lastModified": 1770442013,
"narHash": "sha256-7C6hheIP8JUkK0Aoib/lQ4xbOaXHoqSe9SJjU2u3t/Q=", "narHash": "sha256-JZbm6X0A770bb+VlbJYvRHrVqWOSsmu6Hn4B8nvsPc8=",
"ref": "master", "ref": "master",
"rev": "cf3b1ce2c9e85ad954d8c230161553c5473e9579", "rev": "71d6aa8b614f557d029bfc2e64375c812ed7bc10",
"revCount": 12, "revCount": 19,
"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
]; ];
}; };
} }