spotify: added ncspot
This commit is contained in:
parent
f8305a23c3
commit
d892f2a548
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
];
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue