.dotfiles/dot_config/flake/home/nushell.nix
2025-02-01 10:27:14 -05:00

15 lines
266 B
Nix

{config, ...}: {
programs.nushell = {
enable = true;
shellAliases =
config.home.shellAliases;
extraConfig = ''
$env.config.show_banner = false
def gac [] { git add .; git commit }
def gacp [] { gac; git push }
'';
};
}