My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/nixos/modules/services/networking/owamp.nix

45 lines
882 B

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.owamp;
in
{
###### interface
options = {
services.owamp.enable = mkEnableOption "Enable OWAMP server";
};
###### implementation
config = mkIf cfg.enable {
users.users.owamp = {
group = "owamp";
description = "Owamp daemon";
isSystemUser = true;
};
users.groups.owamp = { };
systemd.services.owamp = {
description = "Owamp server";
wantedBy = [ "multi-user.target" ];
serviceConfig = {
ExecStart="${pkgs.owamp}/bin/owampd -R /run/owamp -d /run/owamp -v -Z ";
PrivateTmp = true;
Restart = "always";
Type="simple";
User = "owamp";
Group = "owamp";
RuntimeDirectory = "owamp";
StateDirectory = "owamp";
AmbientCapabilities = "cap_net_bind_service";
};
};
};
}