about summary refs log tree commit diff
path: root/modules/user/devhell
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
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')
-rw-r--r--modules/user/devhell/profiles/base.nix2
-rw-r--r--modules/user/devhell/profiles/packages.nix7
-rw-r--r--modules/user/devhell/profiles/services.nix25
3 files changed, 1 insertions, 33 deletions
diff --git a/modules/user/devhell/profiles/base.nix b/modules/user/devhell/profiles/base.nix
index c317aaeb..53da8697 100644
--- a/modules/user/devhell/profiles/base.nix
+++ b/modules/user/devhell/profiles/base.nix
@@ -51,7 +51,7 @@ in {
 
     users.users.dev = {
       isNormalUser = true;
-      extraGroups = [ "nitrokey" "plugdev" "docker" "vboxusers" "wheel" "mpd" "libvirtd" "wireshark" "video" "audio" ];
+      extraGroups = [ "nitrokey" "plugdev" "docker" "vboxusers" "wheel" "libvirtd" "wireshark" "video" "audio" ];
       uid = 1000;
       shell = "${pkgs.zsh}/bin/zsh";
     };
diff --git a/modules/user/devhell/profiles/packages.nix b/modules/user/devhell/profiles/packages.nix
index 90c35677..360dfe94 100644
--- a/modules/user/devhell/profiles/packages.nix
+++ b/modules/user/devhell/profiles/packages.nix
@@ -36,13 +36,6 @@ in {
         enableKDbus = true;
       };
 
-      conky = {
-        weatherMetarSupport = true;
-        mpdSupport = true;
-        wirelessSupport = true;
-        x11Support = false;
-      };
-
       firefox = {
         enableGTK3 = true;
         enableOfficalBranding = true;
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"
-      '';
-    };
   };
 }