add desktop platform

This commit is contained in:
Fabian Montero 2024-09-08 15:23:22 -06:00
parent a598918c63
commit f07257ab6d
Signed by: fabian
GPG key ID: 1FFAC35E1798174F
28 changed files with 1604 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{
config,
lib,
...
}:
with lib; {
options.local = with types; {
platform = mkOption {
type = str;
};
display = {
"0" = mkOption {
type = str;
};
"1" = mkOption {
type = nullOr str;
};
autorandrProfile = mkOption {
type = attrs;
};
};
nixos = mkOption {
type = bool;
};
};
}