dotfiles/modules/home/cli/shell/nushell/default.nix

21 lines
408 B
Nix
Raw Normal View History

2025-03-31 23:58:34 -05:00
{ flake, ... }:
let
inherit (flake.config.people) user0;
in
2025-03-29 23:08:26 -05:00
{
programs.nushell = {
enable = true;
configFile.text = ''
sleep 7ms
$env.config = {show_banner: false}
2025-03-31 23:58:34 -05:00
$env.ANTHROPIC_API_KEY = (open /home/${user0}/.config/zed/claude-api-key)
2025-03-29 23:08:26 -05:00
'';
shellAliases = {
y = "yy";
lg = "lazygit";
yt = "yt-dlp --embed-chapters";
ze = "zellij";
};
};
}