This commit is contained in:
2026-07-12 15:25:55 -03:00
commit 29377d0c9a
160 changed files with 6138 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{ lib, config, pkgs, ... }:
{
options.custom = {
pi.enable = lib.mkEnableOption "enable pi - pi.dev coding agent";
};
config = lib.mkIf config.custom.pi.enable {
home.packages = with pkgs; [
pi-coding-agent
worktrunk
sesh
sl
ntfy-sh
signal-cli
];
};
}