From a02b3be1baea29e3a2032544a8ef1a5e6b755678 Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Sat, 25 Feb 2023 20:02:28 +0100 Subject: [PATCH] Nushel: base config --- hm_modules/nushell.nix | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) 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 = ""; + }; +}