nixos/urserver: init
This commit is contained in:
parent
ef062c1297
commit
5141082267
@ -926,6 +926,7 @@
|
|||||||
./services/x11/gdk-pixbuf.nix
|
./services/x11/gdk-pixbuf.nix
|
||||||
./services/x11/imwheel.nix
|
./services/x11/imwheel.nix
|
||||||
./services/x11/redshift.nix
|
./services/x11/redshift.nix
|
||||||
|
./services/x11/urserver.nix
|
||||||
./services/x11/urxvtd.nix
|
./services/x11/urxvtd.nix
|
||||||
./services/x11/window-managers/awesome.nix
|
./services/x11/window-managers/awesome.nix
|
||||||
./services/x11/window-managers/default.nix
|
./services/x11/window-managers/default.nix
|
||||||
|
38
nixos/modules/services/x11/urserver.nix
Normal file
38
nixos/modules/services/x11/urserver.nix
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
# 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 ];
|
||||||
|
};
|
||||||
|
|
||||||
|
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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user