ef176dcf7e
conversions were done using https://github.com/pennae/nix-doc-munge using (probably) rev f34e145 running nix-doc-munge nixos/**/*.nix nix-doc-munge --import nixos/**/*.nix the tool ensures that only changes that could affect the generated manual *but don't* are committed, other changes require manual review and are discarded.
39 lines
896 B
Nix
39 lines
896 B
Nix
# urserver service
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
cfg = config.services.urserver;
|
|
in {
|
|
|
|
options.services.urserver.enable = lib.mkEnableOption (lib.mdDoc "urserver");
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
networking.firewall = {
|
|
allowedTCPPorts = [ 9510 9512 ];
|
|
allowedUDPPorts = [ 9511 9512 ];
|
|
};
|
|
|
|
systemd.user.services.urserver = {
|
|
description = ''
|
|
Server for Unified Remote: The one-and-only remote for your computer.
|
|
'';
|
|
wantedBy = [ "graphical-session.target" ];
|
|
partOf = [ "graphical-session.target" ];
|
|
after = [ "network.target" ];
|
|
serviceConfig = {
|
|
Type = "forking";
|
|
ExecStart = ''
|
|
${pkgs.urserver}/bin/urserver --daemon
|
|
'';
|
|
ExecStop = ''
|
|
${pkgs.procps}/bin/pkill urserver
|
|
'';
|
|
RestartSec = 3;
|
|
Restart = "on-failure";
|
|
};
|
|
};
|
|
};
|
|
|
|
}
|