10 lines
239 B
Nix
10 lines
239 B
Nix
{lib, ...}: {
|
|
# Host specific overrides of the root home
|
|
home-manager.users.guz = {
|
|
wayland.windowManager.hyprland.settings = {
|
|
"$MONITOR-1" = lib.mkForce "HDMI-A-1";
|
|
"$MONITOR-2" = lib.mkForce "DVI-D-1";
|
|
};
|
|
};
|
|
}
|