nixfiles/home/c/services/kanshi/default.nix
Callum Leslie e79499c35f
Some checks failed
/ ci (push) Has been cancelled
fix and update to 25.05 woo
2025-07-17 08:46:43 +01:00

50 lines
1.1 KiB
Nix

{...}: {
services.kanshi = {
enable = true;
settings = [
{
profile.name = "undocked";
profile.outputs = [
{
criteria = "eDP-1";
status = "enable";
scale = 1.0;
position = "0,0";
}
];
}
{
profile.name = "work1";
profile.outputs = [
{
criteria = "HP Inc. HP E27 G5 CNC33810R4";
mode = "1920x1080@60.00Hz";
position = "0,0";
}
{
criteria = "eDP-1";
status = "enable";
scale = 1.0;
position = "1920,0";
}
];
}
{
profile.name = "work2";
profile.outputs = [
{
criteria = "Samsung Electric Company LF27T35 H4ZNB01306";
mode = "1920x1080@60.00Hz";
position = "0,0";
}
{
criteria = "eDP-1";
status = "enable";
scale = 1.0;
position = "1920,0";
}
];
}
];
};
}