62 lines
1.3 KiB
Nix
62 lines
1.3 KiB
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
...
|
||
|
}: let
|
||
|
cfg = config.modules.services.mpd;
|
||
|
inherit (config.modules.other.system) username;
|
||
|
|
||
|
inherit (lib) mkEnableOption mkIf mkOption;
|
||
|
inherit (lib.types) str;
|
||
|
in {
|
||
|
options.modules.services.mpd = {
|
||
|
enable = mkEnableOption "mpd";
|
||
|
musicDirectory = mkOption {
|
||
|
description = "music directory for mpd";
|
||
|
type = str;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
home-manager.users.${username} = {
|
||
|
services = {
|
||
|
mpd = {
|
||
|
enable = true;
|
||
|
inherit (cfg) musicDirectory;
|
||
|
extraConfig = ''
|
||
|
user "${username}"
|
||
|
restore_paused "yes"
|
||
|
|
||
|
follow_outside_symlinks "yes"
|
||
|
follow_inside_symlinks "yes"
|
||
|
|
||
|
audio_output {
|
||
|
type "pipewire"
|
||
|
name "PipeWire Sound Server"
|
||
|
}
|
||
|
audio_output {
|
||
|
type "fifo"
|
||
|
name "FIFO"
|
||
|
path "/tmp/mpd.fifo"
|
||
|
format "44100:16:2"
|
||
|
}
|
||
|
'';
|
||
|
};
|
||
|
mpd-mpris = {
|
||
|
enable = true;
|
||
|
mpd = {
|
||
|
host = "127.0.0.1";
|
||
|
network = "unix";
|
||
|
port = 6600;
|
||
|
useLocal = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
playerctld = {
|
||
|
enable = true;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|