summaryrefslogtreecommitdiff
path: root/users/seth/services/spotifyd.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/seth/services/spotifyd.nix')
-rw-r--r--users/seth/services/spotifyd.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/users/seth/services/spotifyd.nix b/users/seth/services/spotifyd.nix
deleted file mode 100644
index 6fe2b35..0000000
--- a/users/seth/services/spotifyd.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- config,
- lib,
- ...
-}:
-let
- cfg = config.seth.services.spotifyd;
-in
-{
- options.seth.services.spotifyd = {
- enable = lib.mkEnableOption "spotifyd";
- };
-
- config = lib.mkIf cfg.enable {
- services.spotifyd = {
- enable = true;
-
- settings = {
- # Implicitly use zeroconf
- global = {
- autoplay = true;
- backend = "pulseaudio";
- bitrate = 320;
- };
- };
- };
- };
-}