nixos/modules/media/mpd/default.nix
2023-07-09 01:37:18 +03:00

23 lines
508 B
Nix

{ outputs, options, config, lib, pkgs, ...}:
with lib;
let
cfg = config.modules.media.mpd;
in
{
options.modules.media.mpd = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
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";
};
};
}