mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
6afb255d97
these changes were generated with nixq 0.0.2, by running nixq ">> lib.mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> Inherit >> mdDoc[remove]" --batchmode nixos/**.nix two mentions of the mdDoc function remain in nixos/, both of which are inside of comments. Since lib.mdDoc is already defined as just id, this commit is a no-op as far as Nix (and the built manual) is concerned.
106 lines
2.7 KiB
Nix
106 lines
2.7 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
inherit (lib)
|
|
escapeShellArgs
|
|
getExe
|
|
lists
|
|
literalExpression
|
|
maintainers
|
|
mkEnableOption
|
|
mkIf
|
|
mkOption
|
|
mkPackageOption
|
|
types;
|
|
|
|
cfg = config.services.dnsproxy;
|
|
|
|
yaml = pkgs.formats.yaml { };
|
|
configFile = yaml.generate "config.yaml" cfg.settings;
|
|
|
|
finalFlags = (lists.optional (cfg.settings != { }) "--config-path=${configFile}") ++ cfg.flags;
|
|
in
|
|
{
|
|
|
|
options.services.dnsproxy = {
|
|
|
|
enable = mkEnableOption "dnsproxy";
|
|
|
|
package = mkPackageOption pkgs "dnsproxy" { };
|
|
|
|
settings = mkOption {
|
|
type = yaml.type;
|
|
default = { };
|
|
example = literalExpression ''
|
|
{
|
|
bootstrap = [
|
|
"8.8.8.8:53"
|
|
];
|
|
listen-addrs = [
|
|
"0.0.0.0"
|
|
];
|
|
listen-ports = [
|
|
53
|
|
];
|
|
upstream = [
|
|
"1.1.1.1:53"
|
|
];
|
|
}
|
|
'';
|
|
description = ''
|
|
Contents of the `config.yaml` config file.
|
|
The `--config-path` argument will only be passed if this set is not empty.
|
|
|
|
See <https://github.com/AdguardTeam/dnsproxy/blob/master/config.yaml.dist>.
|
|
'';
|
|
};
|
|
|
|
flags = mkOption {
|
|
type = types.listOf types.str;
|
|
default = [ ];
|
|
example = [ "--upstream=1.1.1.1:53" ];
|
|
description = ''
|
|
A list of extra command-line flags to pass to dnsproxy. For details on the
|
|
available options, see <https://github.com/AdguardTeam/dnsproxy#usage>.
|
|
Keep in mind that options passed through command-line flags override
|
|
config options.
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
systemd.services.dnsproxy = {
|
|
description = "Simple DNS proxy with DoH, DoT, DoQ and DNSCrypt support";
|
|
after = [ "network.target" "nss-lookup.target" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
serviceConfig = {
|
|
ExecStart = "${getExe cfg.package} ${escapeShellArgs finalFlags}";
|
|
Restart = "always";
|
|
RestartSec = 10;
|
|
DynamicUser = true;
|
|
|
|
AmbientCapabilities = "CAP_NET_BIND_SERVICE";
|
|
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; [ diogotcorreia ];
|
|
|
|
}
|