diff --git a/hm_modules/nushell.nix b/hm_modules/nushell.nix index 5b47474..9732ead 100644 --- a/hm_modules/nushell.nix +++ b/hm_modules/nushell.nix @@ -1 +1,11 @@ -{ programs.nushell = { enable = true; }; } +{ + programs.nushell = { + enable = true; + configFile.text = '' + let-env config = { + show_banner: false + } + ''; + envFile.text = ""; + }; +}