nixos/modules/media/mpd/default.nix

23 lines
506 B
Nix
Raw Normal View History

2023-07-09 02:37:18 +04:00
{ outputs, options, config, lib, pkgs, ...}:
let
cfg = config.modules.media.mpd;
in
{
options.modules.media.mpd = {
2024-08-01 16:24:09 +04:00
enable = lib.mkEnableOption false;
2023-07-09 02:37:18 +04:00
};
2024-08-01 16:24:09 +04:00
config = lib.mkIf cfg.enable {
2023-07-09 02:37:18 +04:00
services.mpd = {
enable = true;
user = "sako";
musicDirectory = "/home/sako/music";
extraConfig = builtins.readFile ../../../config/mpd/mpd.conf;
startWhenNeeded = true;
};
systemd.services.mpd.environment = {
XDG_RUNTIME_DIR = "/run/user/1000";
};
};
}