From d892f2a5488941b30b026d70373b5c69fe1237dd Mon Sep 17 00:00:00 2001 From: Craige McWhirter Date: Thu, 30 Dec 2021 10:36:20 +1000 Subject: [PATCH] spotify: added ncspot --- profiles/desktopCraige.nix | 5 ++++- profiles/spotify.nix | 7 +++++-- 2 files changed, 9 insertions(+), 3 deletions(-) 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 + ]; }