mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
chore: move mpd, also add some things and reorder
This commit is contained in:
parent
793937d34d
commit
8ff40790f2
1 changed files with 10 additions and 6 deletions
|
|
@ -5,10 +5,19 @@
|
|||
...
|
||||
}:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
mpc
|
||||
mpdris2
|
||||
ncmpcpp
|
||||
];
|
||||
|
||||
services.mpd = {
|
||||
enable = true;
|
||||
musicDirectory = "/home/liv/Music";
|
||||
musicDirectory = "/home/${username}/Music";
|
||||
playlistDirectory = "/home/${username}/Music/.playlists";
|
||||
extraConfig = ''
|
||||
restore_paused "yes"
|
||||
auto_update "yes"
|
||||
audio_output {
|
||||
type "pipewire"
|
||||
name "pipewire"
|
||||
|
|
@ -23,9 +32,4 @@
|
|||
# see: https://gitlab.freedesktop.org/pipewire/pipewire/-/issues/609
|
||||
XDG_RUNTIME_DIR = "/run/user/${toString config.users.users.${username}.uid}"; # User-id must match above user. MPD will look inside this directory for the PipeWire socket.
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
mpdris2
|
||||
ncmpcpp
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue