mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-09 18:03:53 +00:00
40 lines
665 B
Nix
40 lines
665 B
Nix
{
|
|
x,
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
with lib;
|
|
with x;
|
|
let
|
|
cfg = config.module.programs.torrserver;
|
|
torr = pkgs.callPackage ./package.nix { };
|
|
in
|
|
{
|
|
options = {
|
|
module.programs.torrserver = {
|
|
enable = mkBool;
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
systemd.services = {
|
|
torrserver = {
|
|
enable = true;
|
|
after = [
|
|
"multi-user.target"
|
|
"network.target"
|
|
];
|
|
wantedBy = [ "multi-user.target" ];
|
|
serviceConfig = {
|
|
ExecStart = "${torr}/bin/torrserver";
|
|
Restart = "on-failure";
|
|
Type = "simple";
|
|
TimeoutSec = 30;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|