diff --git a/profiles/desktopCraige.nix b/profiles/desktopCraige.nix index 0d8b2cd..55e4a82 100644 --- a/profiles/desktopCraige.nix +++ b/profiles/desktopCraige.nix @@ -4,7 +4,10 @@ { # Craige's Desktop Packages - imports = [ ../profiles/ebooks.nix ]; + imports = [ + ../profiles/ebooks.nix + ../profiles/spotify.nix # Spotify settings + ]; environment.systemPackages = with pkgs; [ byobu # text-based window manager and terminal multiplexer. diff --git a/profiles/spotify.nix b/profiles/spotify.nix index 748bcac..decc234 100644 --- a/profiles/spotify.nix +++ b/profiles/spotify.nix @@ -5,11 +5,14 @@ { services.spotifyd = { - enable = true; # Enable the Spotify daemon. + enable = false; # Enable the Spotify daemon. config = "\n username = ${pkgs.gnupg}/bin/gpg -q --for-your-eyes-only --no-tty -d ~/.spotify/userName.gpg\n password_cmd = ${pkgs.gnupg}/bin/gpg -q --for-your-eyes-only --no-tty -d ~/.spotify/passwd.gpg\n "; }; - environment.systemPackages = with pkgs; [ spotify ]; + environment.systemPackages = with pkgs; + [ + ncspot # ncurses Spotify client + ]; }