From 3cc9fa6f829df5fadbc941d1e4fefd3d2112cd77 Mon Sep 17 00:00:00 2001 From: oddlama Date: Wed, 13 Sep 2023 18:39:51 +0200 Subject: [PATCH] fix: disable starship and atuin in nushell --- users/modules/config/shell/nushell.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/users/modules/config/shell/nushell.nix b/users/modules/config/shell/nushell.nix index c314fa3..a26e50e 100644 --- a/users/modules/config/shell/nushell.nix +++ b/users/modules/config/shell/nushell.nix @@ -1,5 +1,5 @@ { - programs.nushell = { - enable = true; - }; + programs.nushell.enable = true; + programs.starship.enableNushellIntegration = false; + programs.atuin.enableNushellIntegration = false; }