From 5ec3c1c0689f847e72988a5cc0a95fb0f2408ff6 Mon Sep 17 00:00:00 2001 From: Toast Date: Wed, 11 Oct 2023 00:49:37 +0200 Subject: [PATCH] Starship: enable and configure nix_shell module --- roles/common/programs/starship.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/roles/common/programs/starship.nix b/roles/common/programs/starship.nix index 81340bf..7b33a20 100644 --- a/roles/common/programs/starship.nix +++ b/roles/common/programs/starship.nix @@ -3,5 +3,12 @@ { programs.starship = { enable = true; + settings = { + nix_shell = { + disabled = false; + heuristic = true; + symbol = ""; + }; + }; }; }