mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 16:58:34 -05:00
15 lines
266 B
Nix
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 }
|
|
'';
|
|
};
|
|
}
|