diff --git a/base-system/dotfiles/spotifyd/spotifyd.nix b/base-system/dotfiles/spotifyd/spotifyd.nix new file mode 100644 index 0000000..27a3c69 --- /dev/null +++ b/base-system/dotfiles/spotifyd/spotifyd.nix @@ -0,0 +1,14 @@ +{ + global = { + username = "sanjay15@sapura.de"; + use_keyring = true; + backend = "alsa"; + device_name = "nix-daemon"; + device_type = "computer"; + device = "default"; + bitrate = 320; + zeroconf_port = 8888; + initial_volume = "50"; + autoplay = false; + }; +} diff --git a/base-system/home.nix b/base-system/home.nix index 9b3b5bc..e5e2c6e 100644 --- a/base-system/home.nix +++ b/base-system/home.nix @@ -35,6 +35,11 @@ enable = true; settings = import ./dotfiles/alacritty/alacritty.nix; }; + + spotifyd = { + enable = true; + settings = import ./dotfiles/spotifyd/spotifyd.nix; + }; };