NixOS-Configs/hosts/vars.nix

8 lines
123 B
Nix

{lib, ...}: {
options = {
variables = lib.mkOption {
type = lib.types.attrs;
default = {};
};
};
}