mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-19 07:59:24 +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
97 lines
2.1 KiB
Nix
97 lines
2.1 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.morty;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
|
|
services.morty = {
|
|
|
|
enable = mkEnableOption "Morty proxy server. See https://github.com/asciimoo/morty";
|
|
|
|
ipv6 = mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
description = "Allow IPv6 HTTP requests?";
|
|
};
|
|
|
|
key = mkOption {
|
|
type = types.str;
|
|
default = "";
|
|
description = ''
|
|
HMAC url validation key (hexadecimal encoded).
|
|
Leave blank to disable. Without validation key, anyone can
|
|
submit proxy requests. Leave blank to disable.
|
|
Generate with `printf %s somevalue | openssl dgst -sha1 -hmac somekey`
|
|
'';
|
|
};
|
|
|
|
timeout = mkOption {
|
|
type = types.int;
|
|
default = 2;
|
|
description = "Request timeout in seconds.";
|
|
};
|
|
|
|
package = mkPackageOption pkgs "morty" { };
|
|
|
|
port = mkOption {
|
|
type = types.port;
|
|
default = 3000;
|
|
description = "Listing port";
|
|
};
|
|
|
|
listenAddress = mkOption {
|
|
type = types.str;
|
|
default = "127.0.0.1";
|
|
description = "The address on which the service listens";
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
###### Service definition
|
|
|
|
config = mkIf config.services.morty.enable {
|
|
|
|
users.users.morty = {
|
|
description = "Morty user";
|
|
createHome = true;
|
|
home = "/var/lib/morty";
|
|
isSystemUser = true;
|
|
group = "morty";
|
|
};
|
|
users.groups.morty = { };
|
|
|
|
systemd.services.morty = {
|
|
description = "Morty sanitizing proxy server.";
|
|
after = [ "network.target" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
serviceConfig = {
|
|
User = "morty";
|
|
ExecStart = ''
|
|
${cfg.package}/bin/morty \
|
|
-listen ${cfg.listenAddress}:${toString cfg.port} \
|
|
${optionalString cfg.ipv6 "-ipv6"} \
|
|
${optionalString (cfg.key != "") "-key " + cfg.key} \
|
|
'';
|
|
};
|
|
};
|
|
environment.systemPackages = [ cfg.package ];
|
|
|
|
};
|
|
}
|