t14_legacy_config/home/options.nix

24 lines
311 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;
};
};
2022-11-30 00:28:53 +01:00
2022-11-30 00:46:55 +01:00
nixos = mkOption {
2022-11-30 00:28:53 +01:00
type = bool;
};
2022-11-30 00:46:55 +01:00
2022-11-29 20:55:12 +01:00
};
}