From 738e384f23c3d125730cdfb9b47fd6cdb27efe8b Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Thu, 14 Sep 2023 16:02:42 -0400 Subject: [PATCH] shells/nushell: remove redundant/broken starship init --- users/modules/global/shells/nushell.nix | 7 ------- 1 file changed, 7 deletions(-) diff --git a/users/modules/global/shells/nushell.nix b/users/modules/global/shells/nushell.nix index 278a1b4..c66abbf 100644 --- a/users/modules/global/shells/nushell.nix +++ b/users/modules/global/shells/nushell.nix @@ -1,12 +1,5 @@ { ... }: { programs.nushell = { enable = true; - configFile.text = '' - source ~/.cache/starship/init.nu - ''; - envFile.text = '' - mkdir ~/.cache/starship - starship init nu | save ~/.cache/starship/init.nu - ''; }; }