depot/cluster/lib/vars/default.nix
2022-08-03 23:04:19 +02:00

9 lines
149 B
Nix

{ lib, ... }:
with lib;
{
options.vars = mkOption {
description = "Miscellaneous variables.";
type = types.attrs;
default = {};
};
}