diff options
| author | Devin Finlinson <devin.finlinson@pm.me> | 2023-09-30 03:52:11 -0600 |
|---|---|---|
| committer | Devin Finlinson <devin.finlinson@pm.me> | 2023-09-30 03:52:11 -0600 |
| commit | d9e3d1977e79ea36da7bc615699b67f431913c23 (patch) | |
| tree | 3627bb75e08a8a88c3706e9d8b96751fbf62143f /home-manager/shell.nix | |
| parent | 8f317ee332fffe934ec8bf61a77efc1eb57bb9df (diff) | |
adding theming and config from ryan4yin nix-config on git
Diffstat (limited to 'home-manager/shell.nix')
| -rw-r--r-- | home-manager/shell.nix | 12 |
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 * + ''; + }; +} |
