feat(nixos): Install Mopidy

This commit is contained in:
punkfairie 2025-03-08 17:38:36 -08:00
parent 431ec4d8a1
commit e2cb9bff4b
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6
2 changed files with 29 additions and 0 deletions

View file

@ -33,6 +33,7 @@ in {
services = {
docker = enabled;
mopidy = enabled;
protonmail-bridge = enabled;
};
};

View file

@ -0,0 +1,28 @@
{
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
mopidy-jellyfin
];
configuration =
# ini
''
[mpd]
hostname = ::
'';
};
};
}