mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
6afb255d97
these changes were generated with nixq 0.0.2, by running nixq ">> lib.mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> Inherit >> mdDoc[remove]" --batchmode nixos/**.nix two mentions of the mdDoc function remain in nixos/, both of which are inside of comments. Since lib.mdDoc is already defined as just id, this commit is a no-op as far as Nix (and the built manual) is concerned.
122 lines
3.4 KiB
Nix
122 lines
3.4 KiB
Nix
{ lib, config, pkgs, ... }:
|
|
let
|
|
cfg = config.services.sitespeed-io;
|
|
format = pkgs.formats.json { };
|
|
in
|
|
{
|
|
options.services.sitespeed-io = {
|
|
enable = lib.mkEnableOption "Sitespeed.io";
|
|
|
|
user = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "sitespeed-io";
|
|
description = "User account under which sitespeed-io runs.";
|
|
};
|
|
|
|
package = lib.mkOption {
|
|
type = lib.types.package;
|
|
default = pkgs.sitespeed-io;
|
|
defaultText = "pkgs.sitespeed-io";
|
|
description = "Sitespeed.io package to use.";
|
|
};
|
|
|
|
dataDir = lib.mkOption {
|
|
default = "/var/lib/sitespeed-io";
|
|
type = lib.types.str;
|
|
description = "The base sitespeed-io data directory.";
|
|
};
|
|
|
|
period = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "hourly";
|
|
description = ''
|
|
Systemd calendar expression when to run. See {manpage}`systemd.time(7)`.
|
|
'';
|
|
};
|
|
|
|
runs = lib.mkOption {
|
|
default = [ ];
|
|
description = ''
|
|
A list of run configurations. The service will call sitespeed-io once
|
|
for every run listed here. This lets you examine different websites
|
|
with different sitespeed-io settings.
|
|
'';
|
|
type = lib.types.listOf (lib.types.submodule {
|
|
options = {
|
|
urls = lib.mkOption {
|
|
type = with lib.types; listOf str;
|
|
default = [];
|
|
description = ''
|
|
URLs the service should monitor.
|
|
'';
|
|
};
|
|
|
|
settings = lib.mkOption {
|
|
type = lib.types.submodule {
|
|
freeformType = format.type;
|
|
options = { };
|
|
};
|
|
default = { };
|
|
description = ''
|
|
Configuration for sitespeed-io, see
|
|
<https://www.sitespeed.io/documentation/sitespeed.io/configuration/>
|
|
for available options. The value here will be directly transformed to
|
|
JSON and passed as `--config` to the program.
|
|
'';
|
|
};
|
|
|
|
extraArgs = lib.mkOption {
|
|
type = with lib.types; listOf str;
|
|
default = [];
|
|
description = ''
|
|
Extra command line arguments to pass to the program.
|
|
'';
|
|
};
|
|
};
|
|
});
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
assertions = [
|
|
{
|
|
assertion = cfg.runs != [];
|
|
message = "At least one run must be configured.";
|
|
}
|
|
{
|
|
assertion = lib.all (run: run.urls != []) cfg.runs;
|
|
message = "All runs must have at least one url configured.";
|
|
}
|
|
];
|
|
|
|
systemd.services.sitespeed-io = {
|
|
description = "Check website status";
|
|
startAt = cfg.period;
|
|
serviceConfig = {
|
|
WorkingDirectory = cfg.dataDir;
|
|
User = cfg.user;
|
|
};
|
|
preStart = "chmod u+w -R ${cfg.dataDir}"; # Make sure things are writable
|
|
script = (lib.concatMapStrings (run: ''
|
|
${lib.getExe cfg.package} \
|
|
--config ${format.generate "sitespeed.json" run.settings} \
|
|
${lib.escapeShellArgs run.extraArgs} \
|
|
${builtins.toFile "urls.txt" (lib.concatLines run.urls)} &
|
|
'') cfg.runs) +
|
|
''
|
|
wait
|
|
'';
|
|
};
|
|
|
|
users = {
|
|
extraUsers.${cfg.user} = {
|
|
isSystemUser = true;
|
|
group = cfg.user;
|
|
home = cfg.dataDir;
|
|
createHome = true;
|
|
homeMode = "755";
|
|
};
|
|
extraGroups.${cfg.user} = { };
|
|
};
|
|
};
|
|
}
|