From 995af1451562f006b2045af4f419433707d99cb0 Mon Sep 17 00:00:00 2001 From: Andrea Ciceri Date: Fri, 16 May 2025 16:02:32 +0200 Subject: [PATCH] Disable spotify at startup --- hmModules/spotify/default.nix | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/hmModules/spotify/default.nix b/hmModules/spotify/default.nix index 59b2edd..5bc0a6d 100644 --- a/hmModules/spotify/default.nix +++ b/hmModules/spotify/default.nix @@ -9,18 +9,18 @@ in { home.packages = [ spotify-adblocked ]; - systemd.user.services.spotify-adblocked = { - Install.WantedBy = [ "graphical-session.target" ]; + # systemd.user.services.spotify-adblocked = { + # Install.WantedBy = [ "graphical-session.target" ]; - Unit = { - Description = "Spotify"; - PartOf = [ "graphical-session.target" ]; - }; + # Unit = { + # Description = "Spotify"; + # PartOf = [ "graphical-session.target" ]; + # }; - Service = { - ExecStart = lib.getExe spotify-adblocked; - Restart = "on-failure"; - RestartSec = 3; - }; - }; + # Service = { + # ExecStart = lib.getExe spotify-adblocked; + # Restart = "on-failure"; + # RestartSec = 3; + # }; + # }; }