feat(ai-harness): add ponytail plugin

This commit is contained in:
tux
2026-08-30 23:13:33 +05:30
parent 91942539d7
commit d0c1416f16
2 changed files with 11 additions and 0 deletions

View File

@@ -25,6 +25,7 @@
}; };
}; };
}; };
plugin = [ "@dietrichgebert/ponytail" ];
}; };
}; };
}; };

View File

@@ -3,6 +3,7 @@
{ {
config, config,
lib, lib,
pkgs,
options, options,
userName, userName,
... ...
@@ -30,6 +31,15 @@
}; };
environmentFiles = cfg.environmentFiles; environmentFiles = cfg.environmentFiles;
addToSystemPackages = true; addToSystemPackages = true;
extraPlugins = [
(pkgs.fetchFromGitHub {
owner = "DietrichGebert";
repo = "ponytail";
rev = "v4.9.0";
hash = "sha256-8cYggVltBAlZ/Zj4pl1bOu7mQdZFXCmDGW4RSpvRA+w=";
})
];
}; };
users.users.${userName}.extraGroups = [ "hermes" ]; users.users.${userName}.extraGroups = [ "hermes" ];