mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
28 lines
736 B
Nix
28 lines
736 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
options.services.expressvpn.enable = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
description = ''
|
|
Enable the ExpressVPN daemon.
|
|
'';
|
|
};
|
|
|
|
config = lib.mkIf config.services.expressvpn.enable {
|
|
boot.kernelModules = [ "tun" ];
|
|
|
|
systemd.services.expressvpn = {
|
|
description = "ExpressVPN Daemon";
|
|
serviceConfig = {
|
|
ExecStart = "${pkgs.expressvpn}/bin/expressvpnd";
|
|
Restart = "on-failure";
|
|
RestartSec = 5;
|
|
};
|
|
wantedBy = [ "multi-user.target" ];
|
|
wants = [ "network-online.target" ];
|
|
after = [ "network.target" "network-online.target" ];
|
|
};
|
|
};
|
|
|
|
meta.maintainers = with lib.maintainers; [ yureien ];
|
|
}
|