18 lines
350 B
Nix
18 lines
350 B
Nix
|
{ lib, ... }:
|
||
|
|
||
|
{
|
||
|
options.garage = {
|
||
|
buckets = lib.mkOption {
|
||
|
description = "Buckets to create in Garage.";
|
||
|
type = with lib.types; attrsOf anything;
|
||
|
default = {};
|
||
|
};
|
||
|
|
||
|
keys = lib.mkOption {
|
||
|
description = "Keys to create in Garage.";
|
||
|
type = with lib.types; attrsOf anything;
|
||
|
default = {};
|
||
|
};
|
||
|
};
|
||
|
}
|