From 211274130ebecf433fdb44820231f52ef03c8a62 Mon Sep 17 00:00:00 2001 From: Doloro1978 Date: Thu, 16 Oct 2025 10:47:14 +0000 Subject: [PATCH] fix(quickshell): daemon still existing even if disabled --- nix/modules/quickshell/home.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/modules/quickshell/home.nix b/nix/modules/quickshell/home.nix index ac9b83c..1342620 100644 --- a/nix/modules/quickshell/home.nix +++ b/nix/modules/quickshell/home.nix @@ -18,7 +18,7 @@ in recursive = true; source = config.lib.file.mkOutOfStoreSymlink "/home/doloro/dotfiles/quickshell/"; }; - config.systemd.user.services.quickshell = { + config.systemd.user.services.quickshell = lib.mkIf cfg.enable { Unit = { Description = "Quickshell daemon"; After = [ "hyprland-session.target" ];