diff --git a/nix/configurations/vanadium.nix b/nix/configurations/vanadium.nix index 34740268..6745b516 100644 --- a/nix/configurations/vanadium.nix +++ b/nix/configurations/vanadium.nix @@ -138,6 +138,7 @@ in ../homeModules/common/cmus ../homeModules/common/fcitx5 ../homeModules/common/fish + ../homeModules/common/nushell.nix ../homeModules/common/ranger ../homeModules/common/starship ../homeModules/common/tmux diff --git a/nix/configurations/vanadium/home/programs.nix b/nix/configurations/vanadium/home/programs.nix index ac89ab8e..bb9b824a 100644 --- a/nix/configurations/vanadium/home/programs.nix +++ b/nix/configurations/vanadium/home/programs.nix @@ -75,6 +75,8 @@ lazygit.enable = true; fish.enable = true; + nushell.enable = true; + starship.enable = true; tmux.enable = true; direnv.enable = true; diff --git a/nix/homeModules/common/nushell.nix b/nix/homeModules/common/nushell.nix new file mode 100644 index 00000000..ab907c06 --- /dev/null +++ b/nix/homeModules/common/nushell.nix @@ -0,0 +1,3 @@ +{ + home.shell.enableNushellIntegration = true; +}