feat(nixos): Install Mopidy
This commit is contained in:
parent
431ec4d8a1
commit
e2cb9bff4b
2 changed files with 29 additions and 0 deletions
|
@ -33,6 +33,7 @@ in {
|
|||
|
||||
services = {
|
||||
docker = enabled;
|
||||
mopidy = enabled;
|
||||
protonmail-bridge = enabled;
|
||||
};
|
||||
};
|
||||
|
|
28
modules/nixos/services/mopidy/default.nix
Normal file
28
modules/nixos/services/mopidy/default.nix
Normal 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 = ::
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue