nixos-config/home/profiles/nixdesk/kanshi.nix
2024-06-07 18:30:15 +02:00

22 lines
445 B
Nix

{
services.kanshi = {
enable = true;
# systemdTarget = "hyprland-session.target"; # default is sway
settings = [
{
profile.name = "default";
profile.outputs = [
{
criteria = "DP-3";
mode = "1920x1080@165Hz";
position = "0,0";
}
{
criteria = "HDMI-A-1";
position = "1920,0";
}
];
}
];
};
}