From 50075dc844054c5b1746328e827bef37e2999bab Mon Sep 17 00:00:00 2001 From: MoritzBoehme Date: Sun, 31 Oct 2021 15:23:11 +0100 Subject: [PATCH] fix spotifyd credentials --- modules/apps/spotify.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/modules/apps/spotify.nix b/modules/apps/spotify.nix index d4db51f..5ea36fa 100644 --- a/modules/apps/spotify.nix +++ b/modules/apps/spotify.nix @@ -9,11 +9,13 @@ global = { # A command that gets executed and can be used to # retrieve your username. - username_cmd = "${pkgs.coreutils}/bin/head -n 1 /run/secrets/spotify"; + username_cmd = + "${pkgs.coreutils}/bin/head -n 1 /run/secrets/spotifyd"; # A command that gets executed and can be used to # retrieve your password. - password_cmd = "${pkgs.coreutils}/bin/tail -n 1 /run/secrets/spotify"; + password_cmd = + "${pkgs.coreutils}/bin/tail -n 1 /run/secrets/spotifyd"; # The name that gets displayed under the connect tab on # official clients. Spaces are not allowed!