From ee9fe1d6cecb1538a85cdf44480382d764e9f030 Mon Sep 17 00:00:00 2001 From: Annika Merris Date: Sun, 5 May 2024 20:27:10 -0400 Subject: [PATCH] Adding `spotifyd` To Home Manager --- hosts/kim/home.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hosts/kim/home.nix b/hosts/kim/home.nix index 3c74b62..ba3ce0b 100644 --- a/hosts/kim/home.nix +++ b/hosts/kim/home.nix @@ -80,6 +80,15 @@ bbenoist.nix ]; }; + services.spotifyd = { + enable = true; + settings = { + global = { + username = "me@annikamerris.com"; + password = "R%3@TNGQYckkGopY"; + }; + }; + }; # Let Home Manager install and manage itself. programs.home-manager.enable = true;