This PR continues the work started in https://github.com/ibizaman/selfhostblocks/pull/314 I had to create my own PR since I couldn't add commits on the fork. --------- Co-authored-by: sivertism <10866270+sivertism@users.noreply.github.com>
12 lines
227 B
Nix
12 lines
227 B
Nix
{ pkgs, lib, ... }:
|
|
let
|
|
contracts = pkgs.callPackage ../. {};
|
|
|
|
inherit (lib) mkOption;
|
|
in
|
|
{
|
|
options.shb.contracts.backup = mkOption {
|
|
description = "Contract for backups.";
|
|
type = contracts.backup.request;
|
|
};
|
|
}
|