From 5713b1596db5854e3e54e2ab95e1af3f65fd71bc Mon Sep 17 00:00:00 2001 From: Chloe Brown Date: Tue, 25 Jan 2022 23:14:46 +0000 Subject: services: spotifyd: fix misplaced bracket --- yellowsquid/services/spotifyd.scm | 4 ++-- 1 file 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 -- cgit v1.2.3