mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-20 16:39:31 +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
80 lines
2.3 KiB
Nix
80 lines
2.3 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.services.goeland;
|
|
tomlFormat = pkgs.formats.toml { };
|
|
in
|
|
{
|
|
options.services.goeland = {
|
|
enable = lib.mkEnableOption "goeland, an alternative to rss2email";
|
|
|
|
settings = lib.mkOption {
|
|
description = ''
|
|
Configuration of goeland.
|
|
See the [example config file](https://github.com/slurdge/goeland/blob/master/cmd/asset/config.default.toml) for the available options.
|
|
'';
|
|
default = { };
|
|
type = tomlFormat.type;
|
|
};
|
|
schedule = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "12h";
|
|
example = "Mon, 00:00:00";
|
|
description = "How often to run goeland, in systemd time format.";
|
|
};
|
|
stateDir = lib.mkOption {
|
|
type = lib.types.path;
|
|
default = "/var/lib/goeland";
|
|
description = ''
|
|
The data directory for goeland where the database will reside if using the unseen filter.
|
|
If left as the default value this directory will automatically be created before the goeland
|
|
server starts, otherwise you are responsible for ensuring the directory exists with
|
|
appropriate ownership and permissions.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
services.goeland.settings.database = "${cfg.stateDir}/goeland.db";
|
|
|
|
systemd.services.goeland = {
|
|
serviceConfig =
|
|
let
|
|
confFile = tomlFormat.generate "config.toml" cfg.settings;
|
|
in
|
|
lib.mkMerge [
|
|
{
|
|
ExecStart = "${pkgs.goeland}/bin/goeland run -c ${confFile}";
|
|
User = "goeland";
|
|
Group = "goeland";
|
|
}
|
|
(lib.mkIf (cfg.stateDir == "/var/lib/goeland") {
|
|
StateDirectory = "goeland";
|
|
StateDirectoryMode = "0750";
|
|
})
|
|
];
|
|
startAt = cfg.schedule;
|
|
};
|
|
|
|
users.users.goeland = {
|
|
description = "goeland user";
|
|
group = "goeland";
|
|
isSystemUser = true;
|
|
};
|
|
users.groups.goeland = { };
|
|
|
|
warnings = lib.optionals (lib.hasAttr "password" cfg.settings.email) [
|
|
''
|
|
It is not recommended to set the "services.goeland.settings.email.password"
|
|
option as it will be in cleartext in the Nix store.
|
|
Please use "services.goeland.settings.email.password_file" instead.
|
|
''
|
|
];
|
|
};
|
|
|
|
meta.maintainers = with lib.maintainers; [ sweenu ];
|
|
}
|