feat: Jellyfin on Mopidy
This commit is contained in:
parent
6f494a002c
commit
ade6f3640a
3 changed files with 22 additions and 2 deletions
|
@ -9,13 +9,18 @@ in {
|
||||||
options.marleyos.services.mopidy.enable = lib.mkEnableOption "mopidy";
|
options.marleyos.services.mopidy.enable = lib.mkEnableOption "mopidy";
|
||||||
|
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
|
age.secrets."mopidy-jellyfin.conf" = {
|
||||||
|
file = ../../../../secrets/mopidy-jellyfin.conf.age;
|
||||||
|
owner = "mopidy";
|
||||||
|
mode = "600";
|
||||||
|
};
|
||||||
|
|
||||||
services.mopidy = {
|
services.mopidy = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
extensionPackages = with pkgs; [
|
extensionPackages = with pkgs; [
|
||||||
mopidy-mpd
|
mopidy-mpd
|
||||||
# TODO: Enable once we have secrets (requires password in config)
|
mopidy-jellyfin
|
||||||
# mopidy-jellyfin
|
|
||||||
];
|
];
|
||||||
|
|
||||||
configuration =
|
configuration =
|
||||||
|
@ -24,6 +29,10 @@ in {
|
||||||
[mpd]
|
[mpd]
|
||||||
hostname = ::
|
hostname = ::
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
extraConfigFiles = [
|
||||||
|
config.age.secrets."mopidy-jellyfin.conf".path
|
||||||
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
10
secrets/mopidy-jellyfin.conf.age
Normal file
10
secrets/mopidy-jellyfin.conf.age
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
age-encryption.org/v1
|
||||||
|
-> ssh-ed25519 Ut1iyA 1KhOCqrugrIdjc8dW4QxEB11PKRT5RfknA4RXG/BKHQ
|
||||||
|
cmEOrOz3ARBjx7Rm0qlesMCyjdP0DnobGuePBbwzyvY
|
||||||
|
-> ssh-ed25519 SC7Q6w NLUNvK+nY8RVnQ9DKoEzAPp2KmvLeb360Slu+A2AqWI
|
||||||
|
qM0cA3x1waTfiKHs0W+n3rX9IcSX2mhrLg2spR2sgF0
|
||||||
|
--- oQsZS55o1/Mnb+gEIOZtFebum6bob+cRJnnF7DKEmKE
|
||||||
|
ù!EÞ£¶”cÛ©ô@Í`f
|
||||||
|
lÄ
|
||||||
|
Žë@ZJ-ÿ±dþ‰Û¾6a¬Ig%ìXþLm&¹w]!YTѼ6)œlHV5¶±ƒR£.›K3ÊrüLÿ‚‹!Œ–üðZuôД„ê×ðÏ<C3B0>yÿ” <E2809D>E
³ŽQÚdìw³<77>
|
||||||
|
G\]›¯èk§½Z]ŒmÃ3`ˆ–®
|
|
@ -12,4 +12,5 @@ let
|
||||||
in {
|
in {
|
||||||
"babeshare-pass.age".publicKeys = defaultKeys;
|
"babeshare-pass.age".publicKeys = defaultKeys;
|
||||||
"ddclient.conf.age".publicKeys = defaultKeys;
|
"ddclient.conf.age".publicKeys = defaultKeys;
|
||||||
|
"mopidy-jellyfin.conf.age".publicKeys = [marley nyx];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue