summaryrefslogtreecommitdiff
path: root/modules/home-manager
diff options
context:
space:
mode:
authorDevin Finlinson <devin.finlinson@pm.me>2024-01-12 07:49:13 -0700
committerDevin Finlinson <devin.finlinson@pm.me>2024-01-12 07:49:13 -0700
commit6fa75a34e7a595908f611e69d6bdd1aee2058686 (patch)
treec88b4d485b0f868abf5321da94b5604f47c03a44 /modules/home-manager
parentf578ed905f76836132d256e678b819f490c1ae66 (diff)
use catppuccin theme for nushell
Diffstat (limited to 'modules/home-manager')
-rw-r--r--modules/home-manager/shell.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/home-manager/shell.nix b/modules/home-manager/shell.nix
index cd35607..c1bcab9 100644
--- a/modules/home-manager/shell.nix
+++ b/modules/home-manager/shell.nix
@@ -1,4 +1,4 @@
-{nushell-scripts, ... }: {
+k{nushell-scripts, ... }: {
programs.nushell = {
enable = true;
shellAliases = {
@@ -24,6 +24,8 @@
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}/themes/nu-themes/catppuccin-mocha.nu
+ $env.config = ($env.config | merge {color_config: (catppuccin-mocha)})
'';
};
}