nixpkgs/nixos/modules/services/networking/imaginary.nix
Silvan Mosberger 4f0dadbf38 treewide: format all inactive Nix files
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-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00

136 lines
3.4 KiB
Nix

{
lib,
config,
pkgs,
utils,
...
}:
let
inherit (lib)
mkEnableOption
mkIf
mkOption
types
;
cfg = config.services.imaginary;
in
{
options.services.imaginary = {
enable = mkEnableOption "imaginary image processing microservice";
address = mkOption {
type = types.str;
default = "localhost";
description = ''
Bind address. Corresponds to the `-a` flag.
Set to `""` to bind to all addresses.
'';
example = "[::1]";
};
port = mkOption {
type = types.port;
default = 8088;
description = "Bind port. Corresponds to the `-p` flag.";
};
settings = mkOption {
description = ''
Command line arguments passed to the imaginary executable, stripped of
the prefix `-`. See upstream's
[README](https://github.com/h2non/imaginary#command-line-usage) for all
options.
'';
type = types.submodule {
freeformType =
with types;
attrsOf (oneOf [
bool
int
(nonEmptyListOf str)
str
]);
options = {
return-size = mkOption {
type = types.bool;
default = false;
description = "Return the image size in the HTTP headers.";
};
};
};
};
};
config = mkIf cfg.enable {
assertions = [
{
assertion = !lib.hasAttr "a" cfg.settings;
message = "Use services.imaginary.address to specify the -a flag.";
}
{
assertion = !lib.hasAttr "p" cfg.settings;
message = "Use services.imaginary.port to specify the -p flag.";
}
];
systemd.services.imaginary = {
after = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
serviceConfig = rec {
ExecStart =
let
args =
lib.mapAttrsToList
(key: val: "-" + key + "=" + lib.concatStringsSep "," (map toString (lib.toList val)))
(
cfg.settings
// {
a = cfg.address;
p = cfg.port;
}
);
in
"${pkgs.imaginary}/bin/imaginary ${utils.escapeSystemdExecArgs args}";
ProtectProc = "invisible";
BindReadOnlyPaths = lib.optional (cfg.settings ? mount) cfg.settings.mount;
CapabilityBoundingSet = if cfg.port < 1024 then [ "CAP_NET_BIND_SERVICE" ] else [ "" ];
AmbientCapabilities = CapabilityBoundingSet;
NoNewPrivileges = true;
DynamicUser = true;
ProtectSystem = "strict";
ProtectHome = true;
TemporaryFileSystem = [ "/:ro" ];
PrivateTmp = true;
PrivateDevices = true;
PrivateUsers = cfg.port >= 1024;
ProtectHostname = true;
ProtectClock = true;
ProtectKernelTunables = true;
ProtectKernelModules = true;
ProtectKernelLogs = true;
ProtectControlGroups = true;
RestrictAddressFamilies = [
"AF_INET"
"AF_INET6"
];
RestrictNamespaces = true;
LockPersonality = true;
MemoryDenyWriteExecute = true;
RestrictRealtime = true;
PrivateMounts = true;
SystemCallFilter = [
"@system-service"
"~@privileged"
];
DevicePolicy = "closed";
};
};
};
meta = {
maintainers = with lib.maintainers; [ dotlambda ];
};
}