nixos/home/swayidle/home.nix

25 lines
746 B
Nix
Raw Normal View History

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