2020-08-18 07:36:13 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.services.doh-proxy-rust;
|
|
|
|
|
|
|
|
in {
|
|
|
|
|
|
|
|
options.services.doh-proxy-rust = {
|
|
|
|
|
|
|
|
enable = mkEnableOption "doh-proxy-rust";
|
|
|
|
|
|
|
|
flags = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
default = [];
|
2021-10-03 17:06:03 +01:00
|
|
|
example = [ "--server-address=9.9.9.9:53" ];
|
2022-07-28 22:19:15 +01:00
|
|
|
description = lib.mdDoc ''
|
2020-08-18 07:36:13 +01:00
|
|
|
A list of command-line flags to pass to doh-proxy. For details on the
|
2022-07-28 22:19:15 +01:00
|
|
|
available options, see <https://github.com/jedisct1/doh-server#usage>.
|
2020-08-18 07:36:13 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
systemd.services.doh-proxy-rust = {
|
|
|
|
description = "doh-proxy-rust";
|
|
|
|
after = [ "network.target" "nss-lookup.target" ];
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
serviceConfig = {
|
|
|
|
ExecStart = "${pkgs.doh-proxy-rust}/bin/doh-proxy ${escapeShellArgs cfg.flags}";
|
|
|
|
Restart = "always";
|
|
|
|
RestartSec = 10;
|
|
|
|
DynamicUser = true;
|
|
|
|
|
|
|
|
CapabilityBoundingSet = "";
|
|
|
|
LockPersonality = true;
|
|
|
|
MemoryDenyWriteExecute = true;
|
|
|
|
NoNewPrivileges = true;
|
|
|
|
ProtectClock = true;
|
|
|
|
ProtectHome = true;
|
|
|
|
ProtectHostname = true;
|
|
|
|
ProtectKernelLogs = true;
|
|
|
|
RemoveIPC = true;
|
|
|
|
RestrictAddressFamilies = "AF_INET AF_INET6";
|
|
|
|
RestrictNamespaces = true;
|
|
|
|
RestrictRealtime = true;
|
|
|
|
RestrictSUIDSGID = true;
|
|
|
|
SystemCallArchitectures = "native";
|
|
|
|
SystemCallErrorNumber = "EPERM";
|
|
|
|
SystemCallFilter = [ "@system-service" "~@privileged @resources" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
meta.maintainers = with maintainers; [ stephank ];
|
|
|
|
|
|
|
|
}
|