diff --git a/home/linux.nix b/home/linux.nix index 47f52e2..f05ef23 100644 --- a/home/linux.nix +++ b/home/linux.nix @@ -76,12 +76,10 @@ }; # Systemd Services - systemd.user.services = { - mpris-proxy = { - description = "Mpris proxy"; - after = [ "network.target" "sound.target" ]; - wantedBy = [ "default.target" ]; - serviceConfig.ExecStart = "${pkgs.bluez}/bin/mpris-proxy"; - }; + systemd.user.services.mpris-proxy = { + description = "Mpris proxy"; + after = [ "network.target" "sound.target" ]; + wantedBy = [ "default.target" ]; + serviceConfig.ExecStart = "${pkgs.bluez}/bin/mpris-proxy"; }; }