mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 19:55:41 +03:00

Format all Nix files using the officially approved formatter,
making the CI check introduced in the previous commit succeed:
nix-build ci -A fmt.check
This is the next step of the of the [implementation](https://github.com/NixOS/nixfmt/issues/153)
of the accepted [RFC 166](https://github.com/NixOS/rfcs/pull/166).
This commit will lead to merge conflicts for a number of PRs,
up to an estimated ~1100 (~33%) among the PRs with activity in the past 2
months, but that should be lower than what it would be without the previous
[partial treewide format](https://github.com/NixOS/nixpkgs/pull/322537).
Merge conflicts caused by this commit can now automatically be resolved while rebasing using the
[auto-rebase script](8616af08d9/maintainers/scripts/auto-rebase
).
If you run into any problems regarding any of this, please reach out to the
[formatting team](https://nixos.org/community/teams/formatting/) by
pinging @NixOS/nix-formatting.
123 lines
3.4 KiB
Nix
123 lines
3.4 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
with lib;
|
|
let
|
|
cfg = config.services.promtail;
|
|
|
|
format = pkgs.formats.json { };
|
|
prettyJSON =
|
|
conf:
|
|
with lib;
|
|
pipe conf [
|
|
(flip removeAttrs [ "_module" ])
|
|
(format.generate "promtail-config.json")
|
|
];
|
|
|
|
allowSystemdJournal =
|
|
cfg.configuration ? scrape_configs && lib.any (v: v ? journal) cfg.configuration.scrape_configs;
|
|
|
|
allowPositionsFile = !lib.hasPrefix "/var/cache/promtail" positionsFile;
|
|
positionsFile = cfg.configuration.positions.filename;
|
|
|
|
configFile = if cfg.configFile != null then cfg.configFile else prettyJSON cfg.configuration;
|
|
|
|
in
|
|
{
|
|
options.services.promtail = with types; {
|
|
enable = mkEnableOption "the Promtail ingresser";
|
|
|
|
configuration = mkOption {
|
|
type = format.type;
|
|
description = ''
|
|
Specify the configuration for Promtail in Nix.
|
|
This option will be ignored if `services.promtail.configFile` is defined.
|
|
'';
|
|
};
|
|
|
|
configFile = mkOption {
|
|
type = nullOr path;
|
|
default = null;
|
|
description = ''
|
|
Config file path for Promtail.
|
|
If this option is defined, the value of `services.promtail.configuration` will be ignored.
|
|
'';
|
|
};
|
|
|
|
extraFlags = mkOption {
|
|
type = listOf str;
|
|
default = [ ];
|
|
example = [ "--server.http-listen-port=3101" ];
|
|
description = ''
|
|
Specify a list of additional command line flags,
|
|
which get escaped and are then passed to Loki.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
services.promtail.configuration.positions.filename = mkDefault "/var/cache/promtail/positions.yaml";
|
|
|
|
systemd.services.promtail = {
|
|
description = "Promtail log ingress";
|
|
wantedBy = [ "multi-user.target" ];
|
|
stopIfChanged = false;
|
|
|
|
preStart = ''
|
|
${lib.getExe pkgs.promtail} -config.file=${configFile} -check-syntax
|
|
'';
|
|
|
|
serviceConfig =
|
|
{
|
|
Restart = "on-failure";
|
|
TimeoutStopSec = 10;
|
|
|
|
ExecStart = "${pkgs.promtail}/bin/promtail -config.file=${configFile} ${escapeShellArgs cfg.extraFlags}";
|
|
|
|
ProtectSystem = "strict";
|
|
ProtectHome = true;
|
|
PrivateTmp = true;
|
|
PrivateDevices = true;
|
|
ProtectKernelTunables = true;
|
|
ProtectControlGroups = true;
|
|
RestrictSUIDSGID = true;
|
|
PrivateMounts = true;
|
|
CacheDirectory = "promtail";
|
|
ReadWritePaths = lib.optional allowPositionsFile (builtins.dirOf positionsFile);
|
|
|
|
User = "promtail";
|
|
Group = "promtail";
|
|
|
|
CapabilityBoundingSet = "";
|
|
NoNewPrivileges = true;
|
|
|
|
ProtectKernelModules = true;
|
|
SystemCallArchitectures = "native";
|
|
ProtectKernelLogs = true;
|
|
ProtectClock = true;
|
|
|
|
LockPersonality = true;
|
|
ProtectHostname = true;
|
|
RestrictRealtime = true;
|
|
MemoryDenyWriteExecute = true;
|
|
PrivateUsers = true;
|
|
|
|
SupplementaryGroups = lib.optional (allowSystemdJournal) "systemd-journal";
|
|
}
|
|
// (optionalAttrs (!pkgs.stdenv.hostPlatform.isAarch64) {
|
|
# FIXME: figure out why this breaks on aarch64
|
|
SystemCallFilter = "@system-service";
|
|
});
|
|
};
|
|
|
|
users.groups.promtail = { };
|
|
users.users.promtail = {
|
|
description = "Promtail service user";
|
|
isSystemUser = true;
|
|
group = "promtail";
|
|
};
|
|
};
|
|
}
|