mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-23 17:56:53 +03:00

After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
79 lines
1.6 KiB
Nix
79 lines
1.6 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
options,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.pgpkeyserver-lite;
|
|
sksCfg = config.services.sks;
|
|
sksOpt = options.services.sks;
|
|
|
|
webPkg = cfg.package;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
services.pgpkeyserver-lite = {
|
|
|
|
enable = mkEnableOption "pgpkeyserver-lite on a nginx vHost proxying to a gpg keyserver";
|
|
|
|
package = mkPackageOption pkgs "pgpkeyserver-lite" { };
|
|
|
|
hostname = mkOption {
|
|
type = types.str;
|
|
description = ''
|
|
Which hostname to set the vHost to that is proxying to sks.
|
|
'';
|
|
};
|
|
|
|
hkpAddress = mkOption {
|
|
default = builtins.head sksCfg.hkpAddress;
|
|
defaultText = literalExpression "head config.${sksOpt.hkpAddress}";
|
|
type = types.str;
|
|
description = ''
|
|
Which IP address the sks-keyserver is listening on.
|
|
'';
|
|
};
|
|
|
|
hkpPort = mkOption {
|
|
default = sksCfg.hkpPort;
|
|
defaultText = literalExpression "config.${sksOpt.hkpPort}";
|
|
type = types.int;
|
|
description = ''
|
|
Which port the sks-keyserver is listening on.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
services.nginx.enable = true;
|
|
|
|
services.nginx.virtualHosts =
|
|
let
|
|
hkpPort = builtins.toString cfg.hkpPort;
|
|
in
|
|
{
|
|
${cfg.hostname} = {
|
|
root = webPkg;
|
|
locations = {
|
|
"/pks".extraConfig = ''
|
|
proxy_pass http://${cfg.hkpAddress}:${hkpPort};
|
|
proxy_pass_header Server;
|
|
add_header Via "1.1 ${cfg.hostname}";
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|