mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-13 19:29:15 +01: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-build a08b3a4d19.tar.gz \
--argstr baseRev b32a094368
result/bin/apply-formatting $NIXPKGS_PATH
107 lines
2.6 KiB
Nix
107 lines
2.6 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.services.pykms;
|
|
libDir = "/var/lib/pykms";
|
|
|
|
in
|
|
{
|
|
meta.maintainers = with lib.maintainers; [ peterhoeg ];
|
|
|
|
imports = [
|
|
(lib.mkRemovedOptionModule [ "services" "pykms" "verbose" ] "Use services.pykms.logLevel instead")
|
|
];
|
|
|
|
options = {
|
|
services.pykms = {
|
|
enable = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
description = "Whether to enable the PyKMS service.";
|
|
};
|
|
|
|
listenAddress = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "0.0.0.0";
|
|
description = "The IP address on which to listen.";
|
|
};
|
|
|
|
port = lib.mkOption {
|
|
type = lib.types.port;
|
|
default = 1688;
|
|
description = "The port on which to listen.";
|
|
};
|
|
|
|
openFirewallPort = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
description = "Whether the listening port should be opened automatically.";
|
|
};
|
|
|
|
memoryLimit = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "64M";
|
|
description = "How much memory to use at most.";
|
|
};
|
|
|
|
logLevel = lib.mkOption {
|
|
type = lib.types.enum [
|
|
"CRITICAL"
|
|
"ERROR"
|
|
"WARNING"
|
|
"INFO"
|
|
"DEBUG"
|
|
"MININFO"
|
|
];
|
|
default = "INFO";
|
|
description = "How much to log";
|
|
};
|
|
|
|
extraArgs = lib.mkOption {
|
|
type = lib.types.listOf lib.types.str;
|
|
default = [ ];
|
|
description = "Additional arguments";
|
|
};
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
networking.firewall.allowedTCPPorts = lib.mkIf cfg.openFirewallPort [ cfg.port ];
|
|
|
|
systemd.services.pykms = {
|
|
description = "Python KMS";
|
|
after = [ "network.target" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
# python programs with DynamicUser = true require HOME to be set
|
|
environment.HOME = libDir;
|
|
serviceConfig = with pkgs; {
|
|
DynamicUser = true;
|
|
StateDirectory = baseNameOf libDir;
|
|
ExecStartPre = "${lib.getBin pykms}/libexec/create_pykms_db.sh ${libDir}/clients.db";
|
|
ExecStart = lib.concatStringsSep " " (
|
|
[
|
|
"${lib.getBin pykms}/bin/server"
|
|
"--logfile=STDOUT"
|
|
"--loglevel=${cfg.logLevel}"
|
|
"--sqlite=${libDir}/clients.db"
|
|
]
|
|
++ cfg.extraArgs
|
|
++ [
|
|
cfg.listenAddress
|
|
(toString cfg.port)
|
|
]
|
|
);
|
|
ProtectHome = "tmpfs";
|
|
WorkingDirectory = libDir;
|
|
SyslogIdentifier = "pykms";
|
|
Restart = "on-failure";
|
|
MemoryMax = cfg.memoryLimit;
|
|
};
|
|
};
|
|
};
|
|
}
|