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

78 lines
1.6 KiB
Nix

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