54 lines
1.4 KiB
Nix
54 lines
1.4 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
cfg = config.poz.services.mpd;
|
|
inherit (config.poz.other.system) username;
|
|
|
|
inherit (lib.modules) mkIf;
|
|
inherit (lib.options) mkEnableOption mkOption;
|
|
inherit (lib.types) str;
|
|
in {
|
|
options.poz.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 = ''
|
|
audio_output {
|
|
type "pipewire"
|
|
name "PipeWire Sound Server"
|
|
}
|
|
|
|
follow_outside_symlinks "yes"
|
|
follow_inside_symlinks "yes"
|
|
'';
|
|
};
|
|
|
|
mpd-mpris = {
|
|
enable = true;
|
|
mpd = {
|
|
host = "127.0.0.1";
|
|
network = "unix";
|
|
port = 6600;
|
|
useLocal = true;
|
|
};
|
|
};
|
|
|
|
playerctld = {
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|