Small enhancements for omanix (#3)

- Signal package
- Configurable GDK_SCALE
- Add input.nix (lol)
This commit is contained in:
mrosseel
2025-07-09 03:43:25 +02:00
committed by GitHub
parent 8bb8681985
commit 5e93a53cec
5 changed files with 42 additions and 51 deletions
+5
View File
@@ -33,6 +33,11 @@ lib: {
type = lib.types.listOf lib.types.str;
default = [];
};
scale = lib.mkOption {
type = lib.types.int;
default = 2;
description = "Display scale factor (1 for 1x displays, 2 for 2x displays)";
};
quick_app_bindings = lib.mkOption {
type = lib.types.listOf lib.types.str;
description = "A list of single keystroke key bindings to launch common apps.";