From 43a4c6fca5c6b8aa6a1f928abd1e565a29b919ed Mon Sep 17 00:00:00 2001 From: dwilliam62 Date: Tue, 30 Jul 2024 18:43:59 +0000 Subject: [PATCH] Update home.nix Move starship enable statements from inside hypridle configuration code section, to below where kitty is enabled to resolve hyprldle problem --- hosts/default/home.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hosts/default/home.nix b/hosts/default/home.nix index 685569b..f212d00 100644 --- a/hosts/default/home.nix +++ b/hosts/default/home.nix @@ -121,11 +121,7 @@ in after_sleep_cmd = "hyprctl dispatch dpms on"; ignore_dbus_inhibit = false; lock_cmd = "hyprlock"; - starship = { - enable = true; - package = pkgs.starship; }; - }; listener = [ { timeout = 900; @@ -165,6 +161,10 @@ in inactive_tab_font_style bold ''; }; + starship = { + enable = true; + package = pkgs.starship; + }; bash = { enable = true; enableCompletion = true;