about summary refs log tree commit diff
path: root/modules/user/devhell/profiles/services.nix
diff options
context:
space:
mode:
authordevhell <devhell@mailfresser.de>2021-08-16 19:45:25 +0100
committerdevhell <devhell@mailfresser.de>2021-08-16 19:45:25 +0100
commitcd053da834cfc151c2d84a6bd7752eeb1dae4e8e (patch)
tree79614bdcf78ca1121633dc6ca24326c693f1fc98 /modules/user/devhell/profiles/services.nix
parent20e941627b5a7231396849c82c0cebd0aa78d321 (diff)
profiles/{base,packages,services}: Remove mpd
While I love the idea of being able to use different interfaces for my
music listening, I'm not sure it's really worth it locally anymore. I
have an MPD server running on the network, which I can still connect to
using `ncmpcpp` for example, but for local playback, such as at work,
there is no point really in keeping it around. For local playback on
`gunnr` I'll just find something else. This would also solve my previous
PipeWire problem.
Diffstat (limited to 'modules/user/devhell/profiles/services.nix')
-rw-r--r--modules/user/devhell/profiles/services.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/modules/user/devhell/profiles/services.nix b/modules/user/devhell/profiles/services.nix
index ec123124..e0de2881 100644
--- a/modules/user/devhell/profiles/services.nix
+++ b/modules/user/devhell/profiles/services.nix
@@ -101,30 +101,5 @@ in {
     services.journald.extraConfig = ''
       SystemMaxUse = 50M
     '';
-
-    services.mpd = {
-      enable = true;
-      startWhenNeeded = true;
-      extraConfig = ''
-        input {
-          plugin "curl"
-        }
-
-        audio_output {
-          type "fifo"
-          name "FIFO Output"
-          path "/tmp/mpd.fifo"
-          format "44100:16:2"
-        }
-
-        audio_output {
-          type "pulse"
-          name "Pulse Output"
-          server "127.0.0.1"
-        }
-
-        replaygain "album"
-      '';
-    };
   };
 }