flake/home/applications/kanshi/default.nix

31 lines
595 B
Nix
Raw Normal View History

{
services.kanshi = {
enable = true;
settings = [
{
profile.name = "internal";
profile.outputs = [
{
criteria = "eDP-1";
status = "enable";
}
];
}
{
profile.name = "external";
profile.outputs = [
{
criteria = "eDP-1";
status = "disable";
}
{
2024-10-05 14:06:33 +00:00
criteria = "ASUSTek COMPUTER INC VG27AQML1A S7LMQS122018";
mode = "2560x1440@119.998";
status = "enable";
}
];
}
];
};
}