Enable mpd on home system

This commit is contained in:
Erwin Boskma 2022-11-25 12:01:00 +01:00
parent 42582ab90a
commit d61cb3059f
Signed by: erwin
SSH key fingerprint: SHA256:CyeNoWXd3kjX2Nwu6pDxxdS7OqmPVOy0NavA/KU/ntU
2 changed files with 8 additions and 1 deletions

View file

@ -15,6 +15,12 @@ in
network = {
startWhenNeeded = true;
};
extraConfig = ''
audio_output {
type "pipewire"
name "PipeWire Sound Server"
}
'';
};
services.mpdris2 = {
@ -22,6 +28,6 @@ in
notifications = true;
};
home.packages = with pkgs; [ mpc-cli ];
home.packages = with pkgs; [ mpc-cli (ncmpcpp.override { visualizerSupport = true; }) ];
};
}

View file

@ -55,6 +55,7 @@ in
};
gpg.enable = true;
hyprland.enable = true;
mpd.enable = true;
neovim.enable = true;
obs-studio.enable = true;
rclone = {