marleyos/modules/nixos/services/mopidy/default.nix

30 lines
520 B
Nix
Raw Normal View History

2025-03-09 01:38:36 +00:00
{
lib,
config,
pkgs,
...
}: let
cfg = config.marleyos.services.mopidy;
in {
options.marleyos.services.mopidy.enable = lib.mkEnableOption "mopidy";
config = lib.mkIf cfg.enable {
services.mopidy = {
enable = true;
extensionPackages = with pkgs; [
mopidy-mpd
2025-03-09 02:45:00 +00:00
# TODO: Enable once we have secrets (requires password in config)
# mopidy-jellyfin
2025-03-09 01:38:36 +00:00
];
configuration =
# ini
''
[mpd]
hostname = ::
'';
};
};
}