feat: Add deploy-rs integration with basic configuration

- Add deploy-rs as flake input
- Configure deploy.nodes for all 4 machines (sleeper-service, grey-area, reverse-proxy, congenital-optimist)
- Include safety features: autoRollback, magicRollback, activation timeouts
- Add deploy-rs checks for validation
- Successfully tested dry-run deployment

This completes Tasks 1-3 from the deploy-rs integration roadmap.
This commit is contained in:
Geir Okkenhaug Jerstad 2025-06-15 10:03:56 +02:00
parent a9f490882a
commit bc9869cb67
7 changed files with 183 additions and 19 deletions

View file

@ -4,7 +4,6 @@
fetchurl,
nodejs,
}:
buildNpmPackage rec {
pname = "task-master-ai";
version = "0.16.2";
@ -24,7 +23,7 @@ buildNpmPackage rec {
description = "Claude Task Master AI - An intelligent task management and project breakdown tool";
homepage = "https://github.com/eyaltoledano/claude-task-master";
license = licenses.mit;
maintainers = [ ]; # Add your GitHub username if you want
maintainers = []; # Add your GitHub username if you want
platforms = platforms.all;
mainProgram = "task-master-ai";
};

View file

@ -1,14 +1,12 @@
{ pkgs ? import <nixpkgs> { } }:
{
{pkgs ? import <nixpkgs> {}}: {
# Custom packages for Home-lab infrastructure
# Home-lab administration command-line tool
lab = pkgs.callPackage ./home-lab-tools.nix { };
lab = pkgs.callPackage ./home-lab-tools.nix {};
# Claude Task Master AI package
claude-task-master-ai = pkgs.callPackage ./claude-task-master-ai.nix { };
claude-task-master-ai = pkgs.callPackage ./claude-task-master-ai.nix {};
# Re-export commonly used packages with custom configurations
# (Basic CLI tools moved to base.nix)
}
}