feat(greetd): add option to only show on main monitor

This commit is contained in:
matt1432 2023-11-25 19:24:33 -05:00
parent 3a3c8457da
commit cd6d62efc5
4 changed files with 55 additions and 10 deletions

View file

@ -14,6 +14,22 @@
type = types.nullOr types.str;
};
mainMonitor = mkOption {
description = ''
The name of the main monitor used for Hyprland and Regreet
'';
default = "null";
type = types.nullOr types.str;
};
greetdDupe = mkOption {
description = ''
If we should duplicate regreet on all monitors
'';
default = true;
type = types.nullOr types.bool;
};
fontSize = mkOption {
type = types.nullOr types.float;
};