spotify: initial commit
This commit is contained in:
parent
415ca9a2fb
commit
b873c47d3d
19
profiles/spotify.nix
Normal file
19
profiles/spotify.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
# Spotify service configuration
|
||||
|
||||
{ config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
|
||||
services.spotifyd = {
|
||||
enable = true; # Enable the Spotify daemon.
|
||||
config = "
|
||||
username = ${pkgs.gnupg}/bin/gpg -q --for-your-eyes-only --no-tty -d ~/.spotify/userName.gpg
|
||||
password_cmd = ${pkgs.gnupg}/bin/gpg -q --for-your-eyes-only --no-tty -d ~/.spotify/passwd.gpg
|
||||
";
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
spotify
|
||||
];
|
||||
|
||||
}
|
Loading…
Reference in a new issue