mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +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.
58 lines
1.5 KiB
Nix
58 lines
1.5 KiB
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
let
|
|
cfg = config.services.zrepl;
|
|
format = pkgs.formats.yaml { };
|
|
configFile = format.generate "zrepl.yml" cfg.settings;
|
|
in
|
|
{
|
|
meta.maintainers = with maintainers; [ cole-h ];
|
|
|
|
options = {
|
|
services.zrepl = {
|
|
enable = mkEnableOption "zrepl";
|
|
|
|
package = mkPackageOption pkgs "zrepl" { };
|
|
|
|
settings = mkOption {
|
|
default = { };
|
|
description = ''
|
|
Configuration for zrepl. See <https://zrepl.github.io/configuration.html>
|
|
for more information.
|
|
'';
|
|
type = types.submodule {
|
|
freeformType = format.type;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
### Implementation ###
|
|
|
|
config = mkIf cfg.enable {
|
|
environment.systemPackages = [ cfg.package ];
|
|
|
|
# zrepl looks for its config in this location by default. This
|
|
# allows the use of e.g. `zrepl signal wakeup <job>` without having
|
|
# to specify the storepath of the config.
|
|
environment.etc."zrepl/zrepl.yml".source = configFile;
|
|
|
|
systemd.packages = [ cfg.package ];
|
|
|
|
# Note that pkgs.zrepl copies and adapts the upstream systemd unit, and
|
|
# the fields defined here only override certain fields from that unit.
|
|
systemd.services.zrepl = {
|
|
requires = [ "local-fs.target" ];
|
|
wantedBy = [ "zfs.target" ];
|
|
after = [ "zfs.target" ];
|
|
|
|
path = [ config.boot.zfs.package ];
|
|
restartTriggers = [ configFile ];
|
|
|
|
serviceConfig = {
|
|
Restart = "on-failure";
|
|
};
|
|
};
|
|
};
|
|
}
|