102 lines
2.7 KiB
Nix
102 lines
2.7 KiB
Nix
# Monitor layout for 14900k (ported from NixOS-New `hosts/clients/14900k/home.nix`).
|
|
# Niri: `chiasson.desktop.niri.extraSettings` (`extraConfig` KDL + `binds` merged with defaults).
|
|
# Hyprland: `chiasson.desktop.hyprland.settings` (merged in HM when `chiasson.desktop.hyprland.enable`).
|
|
|
|
#TODO[epic=Moderate] Clean this up, move to host's configuration.nix.
|
|
{ config, lib, ... }:
|
|
let
|
|
gpuPassthrough = config.chiasson.system.vm.gpuPassthrough.enable;
|
|
in
|
|
{
|
|
chiasson.desktop.niri.extraSettings = {
|
|
extraConfig =
|
|
if gpuPassthrough then
|
|
''
|
|
output "DP-1" {
|
|
mode "2560x1080@144"
|
|
scale 1.0
|
|
position x=1920 y=0
|
|
focus-at-startup
|
|
}
|
|
output "HDMI-A-2" {
|
|
mode "2560x1080@60"
|
|
scale 1.0
|
|
position x=0 y=0
|
|
}
|
|
''
|
|
else
|
|
''
|
|
output "DP-2" {
|
|
mode "2560x1080@144"
|
|
scale 1.0
|
|
position x=0 y=0
|
|
focus-at-startup
|
|
}
|
|
output "HDMI-A-3" {
|
|
mode "1920x1080@60"
|
|
scale 1.0
|
|
position x=-1920 y=0
|
|
}
|
|
output "DP-4" {
|
|
mode "1920x1080@144"
|
|
scale 1.0
|
|
position x=0 y=-1080
|
|
}
|
|
|
|
'';
|
|
|
|
binds."XF86Tools".spawn = [
|
|
"wpctl"
|
|
"set-mute"
|
|
"@DEFAULT_AUDIO_SOURCE@"
|
|
"toggle"
|
|
];
|
|
};
|
|
|
|
chiasson.desktop.hyprland.settings = lib.mkIf config.chiasson.desktop.hyprland.enable (
|
|
let
|
|
monitorList =
|
|
if gpuPassthrough then
|
|
[
|
|
"DP-1, 2560x1080@144, 0x0, 1"
|
|
"HDMI-A-2, 1920x1080@60, auto-up, 1"
|
|
]
|
|
else
|
|
[
|
|
"DP-2, 2560x1080@144, 0x0, 1"
|
|
"DP-4, 1920x1080@144, 0x-1080, 1"
|
|
"HDMI-A-3, 1920x1080@60, -1920x0, 1"
|
|
];
|
|
workspaceList =
|
|
if gpuPassthrough then
|
|
[
|
|
"1, monitor:DP-1, default:true"
|
|
"2, monitor:DP-1"
|
|
"3, monitor:DP-1"
|
|
"4, monitor:DP-1"
|
|
"5, monitor:HDMI-A-2, default:true"
|
|
"6, monitor:HDMI-A-2"
|
|
"7, monitor:HDMI-A-2"
|
|
"8, monitor:HDMI-A-2"
|
|
"9, monitor:DP-1"
|
|
]
|
|
else
|
|
[
|
|
"1, monitor:DP-3, default:true"
|
|
"2, monitor:DP-3"
|
|
"3, monitor:DP-3"
|
|
"4, monitor:Unknown-2, default:true"
|
|
"5, monitor:Unknown-2"
|
|
"6, monitor:Unknown-2"
|
|
"7, monitor:DP-4"
|
|
"8, monitor:DP-4"
|
|
"9, monitor:DP-4"
|
|
];
|
|
in
|
|
{
|
|
monitor = lib.mkBefore monitorList;
|
|
workspace = workspaceList;
|
|
}
|
|
);
|
|
}
|