12 lines
269 B
Nix
12 lines
269 B
Nix
{ lib, ...}: {
|
|
home-manager.users."lilith".wayland.windowManager.hyprland.settings = {
|
|
input.kb_layout = lib.mkForce "en";
|
|
|
|
monitor = lib.mkForce [
|
|
"DP-3, 3840x2160, 0x0, 1.5"
|
|
"DP-4, 2560x1440, 2560x0, 1"
|
|
",preferred,auto,1"
|
|
];
|
|
};
|
|
}
|
|
|