diff --git a/system/home/shell/config.nu b/system/home/shell/config.nu new file mode 100644 index 00000000..865a2f76 --- /dev/null +++ b/system/home/shell/config.nu @@ -0,0 +1 @@ +$env.config.show_banner = false diff --git a/system/home/shell/default.nix b/system/home/shell/default.nix index 25f602c5..e24c4651 100644 --- a/system/home/shell/default.nix +++ b/system/home/shell/default.nix @@ -24,7 +24,10 @@ programs = { # Shells bash.enable = true; - nushell.enable = true; + nushell = { + enable = true; + configFile.source = ./config.nu; + }; zsh = { enable = true; enableCompletion = true;