monitor division

This commit is contained in:
2025-11-01 15:35:06 +09:00
parent 7680690b96
commit 2f2d9c3f2b
3 changed files with 4 additions and 3 deletions

View File

@@ -67,8 +67,8 @@ in
# Keybindings configurations # Keybindings configurations
keybindings = { keybindings = {
enable = true; # enable keybindings configurations enable = true; # enable keybindings configurations
extraConfig = "./keybindings.conf"; # additional keybindings configuration extraConfig = ""; # additional keybindings configuration
overrideConfig = null; # complete keybindings configuration override (null or lib.types.lines) overrideConfig = builtins.readFile ./keybindings.conf; # complete keybindings configuration override (null or lib.types.lines)
}; };
# Window rules configurations # Window rules configurations
windowrules = { windowrules = {
@@ -92,7 +92,7 @@ in
# Monitor configurations # Monitor configurations
monitors = { monitors = {
enable = true; # enable monitor configurations enable = true; # enable monitor configurations
overrideConfig = "monitor = Virtual-1, 1920x1080@60, auto, 1"; # complete monitor configuration override (null or lib.types.lines) overrideConfig = builtins.readFile ./monitors.conf; # complete monitor configuration override (null or lib.types.lines)
}; };
}; };
lockscreen = { lockscreen = {

1
modules/hm/monitors.conf Normal file
View File

@@ -0,0 +1 @@
monitor = Virtual-1, 1920x1080@60, auto, 1

0
modules/monitors.conf Normal file
View File