dotfiles/nix/nushell/nushell.nix

22 lines
505 B
Nix
Raw Normal View History

2024-03-18 23:12:35 -05:00
{
config,
pkgs,
...
}: {
#sessionVariables, sessionPath and shellAliases are not applied to nushell.
programs.nushell = {
enable = true;
configFile.source = ./config.nu;
envFile.source = ./env.nu;
};
home.file = {
".config/nushell/scripts".source = ./scripts;
};
programs.yazi.enableNushellIntegration = true;
programs.zoxide.enableNushellIntegration = true;
programs.starship.enableNushellIntegration = true;
programs.carapace.enableNushellIntegration = true;
2024-03-18 23:12:35 -05:00
}