configuration.nix/home/wm/addon/kanshi.nix

65 lines
1.4 KiB
Nix

_: {
services.kanshi = {
enable = true;
systemdTarget = "graphical-session.target";
profiles = {
undocked = {
outputs = [
{
criteria = "eDP-1";
mode = "1920x1080";
position = "0,0";
}
];
};
docked_1 = {
outputs = [
{
criteria = "eDP-1";
transform = "normal";
mode = "1920x1080";
position = "0,216";
scale = 1.25;
}
{
criteria = "DP-1";
transform = "normal";
position = "1536,0";
}
];
};
docked_2 = {
outputs = [
{
criteria = "eDP-1";
transform = "normal";
mode = "1920x1080";
position = "0,216";
scale = 1.25;
}
{
criteria = "DP-2";
transform = "normal";
position = "1536,0";
}
];
};
docked_3 = {
outputs = [
{
criteria = "eDP-1";
transform = "normal";
mode = "1920x1080";
position = "0,216";
scale = 1.25;
}
{
criteria = "DP-3";
transform = "normal";
position = "1536,0";
}
];
};
};
};
}