nixos/home/swayidle/home.nix

21 lines
599 B
Nix
Raw Normal View History

2024-02-14 15:38:19 +08:00
{ pkgs
, lib
, config
, ... }: with lib; mkIf config.passthrough.gui {
services.swayidle = {
enable = true;
systemdTarget = "sway-session.target";
timeouts = [
{ timeout = 600; command = "swaymsg 'output * dpms off'"; resumeCommand = "swaymsg 'output * dpms on'"; }
];
events = [
{ event = "before-sleep"; command = "${pkgs.swaylock-effects}/bin/swaylock -f --grace 0"; }
];
};
# fullscreen as simple idle inhibitor shortcut
wayland.windowManager.sway.config.window.commands = [
{ criteria.shell = ".*"; command = "inhibit_idle fullscreen"; }
];
}