2024-01-03 15:30:30 +00:00
|
|
|
# Copy & pasted https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/config/networking.nix
|
|
|
|
{
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
with lib; let
|
|
|
|
cfg = config.networking;
|
|
|
|
opt = options.networking;
|
|
|
|
in {
|
|
|
|
options = {
|
|
|
|
networking.proxy = {
|
|
|
|
default = lib.mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = null;
|
|
|
|
description = lib.mdDoc ''
|
|
|
|
This option specifies the default value for httpProxy, httpsProxy, ftpProxy and rsyncProxy.
|
|
|
|
'';
|
|
|
|
example = "http://127.0.0.1:3128";
|
|
|
|
};
|
|
|
|
|
|
|
|
httpProxy = lib.mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
inherit (cfg.proxy) default;
|
|
|
|
defaultText = literalExpression "config.${opt.proxy.default}";
|
|
|
|
description = lib.mdDoc ''
|
|
|
|
This option specifies the http_proxy environment variable.
|
|
|
|
'';
|
|
|
|
example = "http://127.0.0.1:3128";
|
|
|
|
};
|
|
|
|
|
|
|
|
httpsProxy = lib.mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
inherit (cfg.proxy) default;
|
|
|
|
defaultText = literalExpression "config.${opt.proxy.default}";
|
|
|
|
description = lib.mdDoc ''
|
|
|
|
This option specifies the https_proxy environment variable.
|
|
|
|
'';
|
|
|
|
example = "http://127.0.0.1:3128";
|
|
|
|
};
|
|
|
|
|
|
|
|
ftpProxy = lib.mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
inherit (cfg.proxy) default;
|
|
|
|
defaultText = literalExpression "config.${opt.proxy.default}";
|
|
|
|
description = lib.mdDoc ''
|
|
|
|
This option specifies the ftp_proxy environment variable.
|
|
|
|
'';
|
|
|
|
example = "http://127.0.0.1:3128";
|
|
|
|
};
|
|
|
|
|
|
|
|
rsyncProxy = lib.mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
inherit (cfg.proxy) default;
|
|
|
|
defaultText = literalExpression "config.${opt.proxy.default}";
|
|
|
|
description = lib.mdDoc ''
|
|
|
|
This option specifies the rsync_proxy environment variable.
|
|
|
|
'';
|
|
|
|
example = "http://127.0.0.1:3128";
|
|
|
|
};
|
|
|
|
|
|
|
|
allProxy = lib.mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
inherit (cfg.proxy) default;
|
|
|
|
defaultText = literalExpression "config.${opt.proxy.default}";
|
|
|
|
description = lib.mdDoc ''
|
|
|
|
This option specifies the all_proxy environment variable.
|
|
|
|
'';
|
|
|
|
example = "http://127.0.0.1:3128";
|
|
|
|
};
|
|
|
|
|
|
|
|
noProxy = lib.mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = null;
|
|
|
|
description = lib.mdDoc ''
|
|
|
|
This option specifies the no_proxy environment variable.
|
|
|
|
If a default proxy is used and noProxy is null,
|
|
|
|
then noProxy will be set to 127.0.0.1,localhost.
|
|
|
|
'';
|
|
|
|
example = "127.0.0.1,localhost,.localdomain";
|
|
|
|
};
|
|
|
|
|
|
|
|
envVars = lib.mkOption {
|
|
|
|
type = types.attrs;
|
|
|
|
internal = true;
|
|
|
|
default = {};
|
|
|
|
description = lib.mdDoc ''
|
|
|
|
Environment variables used for the network proxy.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = {
|
|
|
|
networking.proxy.envVars =
|
|
|
|
optionalAttrs (cfg.proxy.default != null) {
|
|
|
|
# other options already fallback to proxy.default
|
|
|
|
no_proxy = "127.0.0.1,localhost";
|
|
|
|
}
|
|
|
|
// optionalAttrs (cfg.proxy.httpProxy != null) {
|
|
|
|
http_proxy = cfg.proxy.httpProxy;
|
|
|
|
}
|
|
|
|
// optionalAttrs (cfg.proxy.httpsProxy != null) {
|
|
|
|
https_proxy = cfg.proxy.httpsProxy;
|
|
|
|
}
|
|
|
|
// optionalAttrs (cfg.proxy.rsyncProxy != null) {
|
|
|
|
rsync_proxy = cfg.proxy.rsyncProxy;
|
|
|
|
}
|
|
|
|
// optionalAttrs (cfg.proxy.ftpProxy != null) {
|
|
|
|
ftp_proxy = cfg.proxy.ftpProxy;
|
|
|
|
}
|
|
|
|
// optionalAttrs (cfg.proxy.allProxy != null) {
|
|
|
|
all_proxy = cfg.proxy.allProxy;
|
|
|
|
}
|
|
|
|
// optionalAttrs (cfg.proxy.noProxy != null) {
|
|
|
|
no_proxy = cfg.proxy.noProxy;
|
|
|
|
};
|
|
|
|
|
|
|
|
# Install the proxy environment variables
|
|
|
|
environment.variables = cfg.proxy.envVars;
|
|
|
|
launchd.daemons."nix-daemon".environment = cfg.proxy.envVars;
|
2024-02-26 13:15:48 +00:00
|
|
|
|
|
|
|
# Set macOS's system level proxy setting
|
|
|
|
system.activationScripts."extraActivation".text = let
|
|
|
|
inherit (cfg) knownNetworkServices;
|
|
|
|
networksetup = /usr/sbin/networksetup;
|
|
|
|
|
|
|
|
# naive but works(tm)
|
|
|
|
# "http://127.0.0.1:1234/" -> "127.0.0.1 1234"
|
2024-07-21 10:09:21 +00:00
|
|
|
proxy = lib.replaceStrings ["http://" ":" "/"] ["" " " ""] cfg.proxy.httpProxy;
|
2024-02-26 13:15:48 +00:00
|
|
|
in
|
|
|
|
lib.concatMapStrings (x: ''
|
|
|
|
${networksetup} -setwebproxystate "${x}" on
|
|
|
|
${networksetup} -setwebproxy "${x}" ${proxy}
|
|
|
|
'')
|
|
|
|
knownNetworkServices;
|
2024-01-03 15:30:30 +00:00
|
|
|
};
|
|
|
|
}
|