summaryrefslogtreecommitdiff
path: root/modules/home-manager
diff options
context:
space:
mode:
authorDevin Finlinson <devin.finlinson@pm.me>2023-11-21 00:00:46 -0700
committerDevin Finlinson <devin.finlinson@pm.me>2023-11-21 00:00:46 -0700
commit0abef70c025c48850b651f63c88086088576a5ed (patch)
tree4c8882fc07ad96757dada56159886071aa09c1a0 /modules/home-manager
parentb29e40cddb562745dd8662a8d3baf846273da679 (diff)
use command (nushell) doesn't seem to work, maybe source will
Diffstat (limited to 'modules/home-manager')
-rw-r--r--modules/home-manager/shell.nix14
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 *
'';
};
}