Add worktrunk shell integration

This commit is contained in:
Sage 2026-03-31 11:35:38 +00:00
parent 55adebb809
commit 0829385802
3 changed files with 110 additions and 4 deletions

View file

@ -26,13 +26,15 @@ in {
enableNushellIntegration = lib.mkIf config.mods.terminal.nushell.enable true;
};
programs.worktrunk = {
enable = true;
enableZshIntegration = lib.mkIf config.mods.terminal.zsh.enable true;
enableNushellIntegration = lib.mkIf config.mods.terminal.nushell.enable true;
};
home.sessionVariables.EDITOR = "nvim";
programs.zsh.sessionVariables = lib.mkIf config.mods.terminal.zsh.enable {
EDITOR = "nvim";
};
home.packages = with pkgs; [
worktrunk
];
};
}