From 972a3ce0c9abad10339be195fa4c1b3294b3c8dc Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Wed, 29 Jan 2025 08:15:09 +0000 Subject: [PATCH] Add initial config.nu that disables startup banner --- system/home/shell/config.nu | 1 + system/home/shell/default.nix | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 system/home/shell/config.nu 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;