nixpkgs/nixos/modules/services/misc/ombi.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

84 lines
2.0 KiB
Nix
Raw Normal View History

2021-03-29 14:48:17 +00:00
{ config, pkgs, lib, ... }:
with lib;
let cfg = config.services.ombi;
in {
options = {
services.ombi = {
enable = mkEnableOption ''
Ombi, a web application that automatically gives your shared Plex or
Emby users the ability to request content by themselves!
2021-03-29 14:48:17 +00:00
Optionally see <https://docs.ombi.app/info/reverse-proxy>
on how to set up a reverse proxy
'';
2021-03-29 14:48:17 +00:00
dataDir = mkOption {
type = types.str;
default = "/var/lib/ombi";
description = "The directory where Ombi stores its data files.";
2021-03-29 14:48:17 +00:00
};
port = mkOption {
type = types.port;
default = 5000;
description = "The port for the Ombi web interface.";
2021-03-29 14:48:17 +00:00
};
openFirewall = mkOption {
type = types.bool;
default = false;
description = "Open ports in the firewall for the Ombi web interface.";
2021-03-29 14:48:17 +00:00
};
user = mkOption {
type = types.str;
default = "ombi";
description = "User account under which Ombi runs.";
2021-03-29 14:48:17 +00:00
};
group = mkOption {
type = types.str;
default = "ombi";
description = "Group under which Ombi runs.";
2021-03-29 14:48:17 +00:00
};
};
};
config = mkIf cfg.enable {
systemd.tmpfiles.rules = [
"d '${cfg.dataDir}' 0700 ${cfg.user} ${cfg.group} - -"
];
systemd.services.ombi = {
description = "Ombi";
after = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
serviceConfig = {
Type = "simple";
User = cfg.user;
Group = cfg.group;
ExecStart = "${pkgs.ombi}/bin/Ombi --storage '${cfg.dataDir}' --host 'http://*:${toString cfg.port}'";
Restart = "on-failure";
};
};
networking.firewall = mkIf cfg.openFirewall {
allowedTCPPorts = [ cfg.port ];
};
users.users = mkIf (cfg.user == "ombi") {
ombi = {
2021-04-29 07:52:02 +00:00
isSystemUser = true;
2021-03-29 14:48:17 +00:00
group = cfg.group;
home = cfg.dataDir;
};
};
users.groups = mkIf (cfg.group == "ombi") { ombi = { }; };
};
}