about summary refs log tree commit diff
path: root/modules/user/devhell/profiles/base.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/base.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/base.nix')
-rw-r--r--modules/user/devhell/profiles/base.nix2
1 files changed, 1 insertions, 1 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";
     };