depot/cluster/lib/vars/default.nix

10 lines
149 B
Nix
Raw Normal View History

2022-06-23 21:13:28 +03:00
{ lib, ... }:
with lib;
{
options.vars = mkOption {
description = "Miscellaneous variables.";
type = types.attrs;
default = {};
};
}