Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
26 lines
593 B
Nix
26 lines
593 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
#
|
|
# interface
|
|
#
|
|
options = {
|
|
services.gdomap = {
|
|
enable = lib.mkEnableOption "GNUstep Distributed Objects name server";
|
|
};
|
|
};
|
|
|
|
#
|
|
# implementation
|
|
#
|
|
config = lib.mkIf config.services.gdomap.enable {
|
|
# NOTE: gdomap runs as root
|
|
# TODO: extra user for gdomap?
|
|
systemd.services.gdomap = {
|
|
description = "gdomap server";
|
|
wantedBy = [ "multi-user.target" ];
|
|
after = [ "network.target" ];
|
|
path = [ pkgs.gnustep.base ];
|
|
serviceConfig.ExecStart = "${pkgs.gnustep.base}/bin/gdomap -f";
|
|
};
|
|
};
|
|
}
|