nix-conf/home-modules/nushell/default.nix
2024-07-10 23:02:54 +02:00

37 lines
606 B
Nix

{
config,
lib,
pkgs,
...
}:
let
cfg = config.jopejoe1.nushell;
in
{
options.jopejoe1.nushell = {
enable = lib.mkEnableOption "Enable Nushell";
};
config = lib.mkIf cfg.enable {
programs = {
nushell = {
enable = true;
};
carapace.enable = true;
carapace.enableNushellIntegration = true;
starship = {
enable = true;
settings = {
add_newline = true;
character = {
success_symbol = "[](bold green)";
error_symbol = "[](bold red)";
};
};
};
};
};
}