summaryrefslogtreecommitdiff
path: root/home-manager/shell.nix
diff options
context:
space:
mode:
authorDevin Finlinson <devin.finlinson@pm.me>2023-09-30 03:52:11 -0600
committerDevin Finlinson <devin.finlinson@pm.me>2023-09-30 03:52:11 -0600
commitd9e3d1977e79ea36da7bc615699b67f431913c23 (patch)
tree3627bb75e08a8a88c3706e9d8b96751fbf62143f /home-manager/shell.nix
parent8f317ee332fffe934ec8bf61a77efc1eb57bb9df (diff)
adding theming and config from ryan4yin nix-config on git
Diffstat (limited to 'home-manager/shell.nix')
-rw-r--r--home-manager/shell.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/home-manager/shell.nix b/home-manager/shell.nix
new file mode 100644
index 0000000..c86190e
--- /dev/null
+++ b/home-manager/shell.nix
@@ -0,0 +1,12 @@
+{nushell-scripts, ... }: {
+ programs.nushell = {
+ extraConfig = ''
+ 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 *
+ '';
+ };
+}