new host and other things !

This commit is contained in:
Reid 2026-03-30 19:04:48 -07:00
parent 2546a8d08e
commit 1625a54459
Signed by: reidlab
GPG key ID: DAF5EAF6665839FD
12 changed files with 216 additions and 15 deletions

View file

@ -12,6 +12,7 @@ in {
a list of monitor configurations. each entry should be an attribute set with the following keys:
- `name`: The name of the monitor to configure
- `scale`: The scale factor to apply to the monitor
- `vrr`?: Whether or not the display supports variable refresh rate. Defaults to false
note: the first monitor in the list will be considered the "primary" monitor
'';
example = [
@ -26,6 +27,7 @@ in {
name = monitor.name;
value = {
scale = monitor.scale;
variable-refresh-rate = monitor.vrr or false;
};
}) cfg.monitors);
};