diff options
Diffstat (limited to 'modules/home-manager/shell.nix')
| -rw-r--r-- | modules/home-manager/shell.nix | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/modules/home-manager/shell.nix b/modules/home-manager/shell.nix index 1fcc03f..fd4c52e 100644 --- a/modules/home-manager/shell.nix +++ b/modules/home-manager/shell.nix @@ -1,14 +1,14 @@ {nushell-scripts, ... }: { programs.nushell = { extraConfig = '' - use ~/.cache/starship/init.nu + source ~/.cache/starship/init.nu - use ${nushell-scripts}/custom-completions/pass/pass-completions.nu * - use ${nushell-scripts}/custom-completions/nix/nix-completions.nu * - use ${nushell-scripts}/custom-completions/man/man-completions.nu * - use ${nushell-scripts}/custom-completions/cargo/cargo-completions.nu * - use ${nushell-scripts}/custom-completions/make/make-completions.nu * - use ${nushell-scripts}/custom-completions/git/git-completions.nu * + source ${nushell-scripts}/custom-completions/pass/pass-completions.nu * + source ${nushell-scripts}/custom-completions/nix/nix-completions.nu * + source ${nushell-scripts}/custom-completions/man/man-completions.nu * + source ${nushell-scripts}/custom-completions/cargo/cargo-completions.nu * + source ${nushell-scripts}/custom-completions/make/make-completions.nu * + source ${nushell-scripts}/custom-completions/git/git-completions.nu * ''; }; } |
