mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
ef176dcf7e
conversions were done using https://github.com/pennae/nix-doc-munge using (probably) rev f34e145 running nix-doc-munge nixos/**/*.nix nix-doc-munge --import nixos/**/*.nix the tool ensures that only changes that could affect the generated manual *but don't* are committed, other changes require manual review and are discarded.
26 lines
740 B
Nix
26 lines
740 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
options = {
|
|
programs.appgate-sdp = {
|
|
enable = mkEnableOption (lib.mdDoc "AppGate SDP VPN client");
|
|
};
|
|
};
|
|
|
|
config = mkIf config.programs.appgate-sdp.enable {
|
|
boot.kernelModules = [ "tun" ];
|
|
environment.systemPackages = [ pkgs.appgate-sdp ];
|
|
services.dbus.packages = [ pkgs.appgate-sdp ];
|
|
systemd = {
|
|
packages = [ pkgs.appgate-sdp ];
|
|
# https://github.com/NixOS/nixpkgs/issues/81138
|
|
services.appgatedriver.wantedBy = [ "multi-user.target" ];
|
|
services.appgate-dumb-resolver.path = [ pkgs.e2fsprogs ];
|
|
services.appgate-resolver.path = [ pkgs.procps pkgs.e2fsprogs ];
|
|
services.appgatedriver.path = [ pkgs.e2fsprogs ];
|
|
};
|
|
};
|
|
}
|