overheating: set scale of login screen to 2.0

This commit is contained in:
DashieTM 2024-05-17 12:54:52 +02:00
parent fcf4fc3064
commit d79f636669
6 changed files with 30 additions and 6 deletions

View file

@ -5,13 +5,21 @@
example = "eDP-1";
type = lib.types.str;
description = ''
Extra settings for foo.
main monitor
'';
};
scale = lib.mkOption {
default = "1.0";
example = "1.0";
type = lib.types.str;
description = ''
Scale for the monitor
'';
};
battery = lib.mkOption {
default = [];
example = [];
default = [ ];
example = [ ];
};
};
}