mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
feat: adds mpdris2 to packages since that is required for mpd apparently
This commit is contained in:
parent
12039dfbc0
commit
21924df69c
1 changed files with 10 additions and 1 deletions
|
|
@ -1,4 +1,9 @@
|
|||
{ username, config, ... }:
|
||||
{
|
||||
username,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
services.mpd = {
|
||||
enable = true;
|
||||
|
|
@ -19,4 +24,8 @@
|
|||
# see: https://gitlab.freedesktop.org/pipewire/pipewire/-/issues/609
|
||||
XDG_RUNTIME_DIR = "/run/user/${toString config.users.users.userRunningPipeWire.uid}"; # User-id must match above user. MPD will look inside this directory for the PipeWire socket.
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
mpdris2
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue