summaryrefslogtreecommitdiff
path: root/modules/home-manager
diff options
context:
space:
mode:
authorDevin Finlinson <devin.finlinson@pm.me>2023-11-28 07:05:11 -0700
committerDevin Finlinson <devin.finlinson@pm.me>2023-11-28 07:05:11 -0700
commit3dd1e437ee2e8da87266a8f625ebfcbb577d76a2 (patch)
tree7f523c28eb3955ce51e6c3c312bb13017548395a /modules/home-manager
parent0c51b58ab1fd9da780afa1f9cc595344ff7a5393 (diff)
removing asterisk should solve Error: nu::parser::extra_positional
I don't know why that was ever there in the first place
Diffstat (limited to 'modules/home-manager')
-rw-r--r--modules/home-manager/shell.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/home-manager/shell.nix b/modules/home-manager/shell.nix
index f1d5b61..0bcfb68 100644
--- a/modules/home-manager/shell.nix
+++ b/modules/home-manager/shell.nix
@@ -7,12 +7,12 @@
extraConfig = ''
source ~/.cache/starship/init.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 *
+ 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
'';
};
}