From f2cc1e5d825a0efc67ccb905fb0b5275d847a2cb Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Fri, 20 Sep 2024 14:59:59 +0100 Subject: [PATCH] Switch default interactive shell for nushell --- system/home/desktop.nix | 2 +- system/home/shell/default.nix | 1 + system/home/shell/starship.nix | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/system/home/desktop.nix b/system/home/desktop.nix index 79b0bdc5..156f65d3 100644 --- a/system/home/desktop.nix +++ b/system/home/desktop.nix @@ -20,7 +20,7 @@ alacritty = { enable = true; settings = { - shell = "${config.programs.fish.package}/bin/fish"; + shell = "${config.programs.nushell.package}/bin/nu"; window = { dynamic_title = true; padding = { diff --git a/system/home/shell/default.nix b/system/home/shell/default.nix index 60654374..c2628244 100644 --- a/system/home/shell/default.nix +++ b/system/home/shell/default.nix @@ -22,6 +22,7 @@ fd.enable = true; jq.enable = true; nix-index.enable = true; + nushell.enable = true; ripgrep.enable = true; bat = { enable = true; diff --git a/system/home/shell/starship.nix b/system/home/shell/starship.nix index aea61331..72d9baec 100644 --- a/system/home/shell/starship.nix +++ b/system/home/shell/starship.nix @@ -144,6 +144,7 @@ format = "using [$indicator]($style)"; bash_indicator = " "; fish_indicator = "󰈺 "; + nu_indicator = "ν "; powershell_indicator = " "; cmd_indicator = " "; unknown_indicator = " ";