1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-26 19:16:47 +03:00
nixpkgs/nixos/modules/services/x11/urserver.nix

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

51 lines
935 B
Nix
Raw Normal View History

2020-08-09 11:42:55 +02:00
# urserver service
{
config,
lib,
pkgs,
...
}:
let
cfg = config.services.urserver;
in
{
options.services.urserver.enable = lib.mkEnableOption "urserver";
config = lib.mkIf cfg.enable {
networking.firewall = {
allowedTCPPorts = [
9510
9512
];
allowedUDPPorts = [
9511
9512
];
};
2024-03-25 11:35:25 +01:00
systemd.user.services.urserver = {
2020-08-09 11:42:55 +02:00
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";
};
};
};
}