mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
33 lines
757 B
Nix
33 lines
757 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.services.netclient;
|
|
in
|
|
{
|
|
meta.maintainers = with lib.maintainers; [ wexder ];
|
|
|
|
options.services.netclient = {
|
|
enable = lib.mkEnableOption "Netclient Daemon";
|
|
package = lib.mkPackageOption pkgs "netclient" { };
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
environment.systemPackages = [ cfg.package ];
|
|
systemd.services.netclient = {
|
|
wants = [ "network-online.target" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
after = [ "network-online.target" ];
|
|
description = "Netclient Daemon";
|
|
serviceConfig = {
|
|
Type = "simple";
|
|
ExecStart = "${lib.getExe cfg.package} daemon";
|
|
Restart = "on-failure";
|
|
RestartSec = "15s";
|
|
};
|
|
};
|
|
};
|
|
}
|