diff options
-rw-r--r-- | yellowsquid/services/spotifyd.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yellowsquid/services/spotifyd.scm b/yellowsquid/services/spotifyd.scm index 137280e..0aa3bbf 100644 --- a/yellowsquid/services/spotifyd.scm +++ b/yellowsquid/services/spotifyd.scm @@ -72,7 +72,7 @@ "[global]\n" ,@(match username (('raw value) (put-string "username" value)) - (('cmd value) (put-string "username_cmd" value)) + (('cmd value) (put-string "username_cmd" value))) ,@(if use-keyring? (put-boolean "use_keyring" #t) (match password @@ -95,7 +95,7 @@ ,@(put-maybe "normalisation_pregain" normalisation-pregain #f) ,@(put-maybe "zeroconf_port" zeroconf-port #f) ,@(put-maybe "proxy" proxy #f) - ,@(put-string "device_type" device-type)))))) + ,@(put-string "device_type" device-type))))) (define (spotifyd-shepherd-service config) (list (shepherd-service |