Add kanshi

This commit is contained in:
Jakob Lechner 2024-07-08 11:26:24 +02:00
parent 3a5da3b792
commit 5539880ddb

View file

@ -17,4 +17,33 @@ lib.mkIf nixosConfig.jalr.gui.enable {
vlc
xdg_utils
];
services.kanshi = {
enable = true;
settings = [
{
profile.name = "laemmermann";
profile.outputs = [
{
criteria = "ViewSonic Corporation VX3276-QHD VSX2403A0490";
status = "enable";
mode = "2560x1440@59.951Hz";
position = "0,0";
}
{
criteria = "ViewSonic Corporation VX3276-QHD VSX2351A0801";
status = "enable";
mode = "2560x1440@59.951Hz";
position = "2560,0";
}
{
criteria = "eDP-1";
status = "enable";
mode = "2560x1600";
position = "5120,0";
}
];
}
];
};
}