mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 09:54:40 +02:00
22 lines
410 B
Nix
22 lines
410 B
Nix
![]() |
{ config, pkgs, ... }:
|
||
|
{
|
||
|
services.bazarr = {
|
||
|
enable = true;
|
||
|
openFirewall = true;
|
||
|
};
|
||
|
|
||
|
systemd.services.bazarr = {
|
||
|
after = [ "network-online.target" ];
|
||
|
#unitConfig.RequiresMountsFor = [ "/storage" ];
|
||
|
};
|
||
|
|
||
|
webapps.apps.bazarr = {
|
||
|
dashboard = {
|
||
|
name = "Bazarr";
|
||
|
category = "manag";
|
||
|
icon = "closed-captioning";
|
||
|
link = "http://192.168.178.60:6767";
|
||
|
};
|
||
|
};
|
||
|
}
|