dotfiles/lib/nixos/home-manager/modules/kanshi.nix
Oliver Davies d515d5cc0f Rename kanshi.profiles to kanshi.settings
> trace: warning: opdavies profile: kanshi.profiles option is
> deprecated. Use kanshi.settings instead.
2024-05-24 15:36:22 +01:00

40 lines
716 B
Nix

{
systemd.user.services.kanshi = {
serviceConfig = {
StartLimitBurst = 5;
StartLimitIntervalSec = 30;
};
};
services.kanshi = {
enable = true;
# swaymsg -t get_outputs
settings = {
undocked = {
outputs = [{
criteria = "eDP-1";
status = "enable";
mode = "1920x1080";
position = "0,0";
}];
};
docked = {
outputs = [
{
criteria = "eDP-1";
status = "disable";
}
{
criteria = "Samsung Electric Company LU28R55 H4ZRA00128";
mode = "3840x2160";
position = "0,0";
}
];
};
};
};
}