Files
nixos/home/baseline/nushell.nix
T

25 lines
534 B
Nix
Raw Normal View History

2025-06-11 12:35:01 -05:00
{
config,
lib,
...
}:
{
programs = {
nushell = {
enable = true;
extraConfig = ''
use std/util "path add"
path add ${config.home.homeDirectory}/src/bin
path add /opt/homebrew/bin
path add /run/current-system/sw/bin
path add ${config.home.homeDirectory}/.nix-profile/bin
'';
settings = {
buffer_editor = lib.getExe config.programs.nixvim.package;
2025-08-15 13:34:02 -05:00
"history.isolation" = true;
2025-06-11 12:35:01 -05:00
};
};
};
2025-08-13 22:32:54 -05:00
home.shell.enableNushellIntegration = true;
2025-06-11 12:35:01 -05:00
}