t14_legacy_config/home/local.nix

19 lines
260 B
Nix
Raw Normal View History

2022-11-29 20:55:12 +01:00
{ config, lib, ... } :
with lib;
{
options.local = with types; {
platform = mkOption {
type = str;
};
display = {
"0" = mkOption {
type = str;
};
"1" = mkOption {
type = nullOr str;
};
};
};
}