This repository has been archived on 2024-07-03. You can view files and clone it, but cannot push or open issues or pull requests.
home-manager/programs/sway/swayidle/default.nix
Evie Litherland-Smith 1cccd418b5 Add swayidle daemon
Move default swaylock-effects command into script "swaylockfx" to
reuse for swayidle
2024-05-20 09:28:00 +01:00

13 lines
210 B
Nix

{...}: {
imports = [../swaylock/default.nix];
services.swayidle = {
enable = true;
timeouts = [
{
timeout = 60 * 15; # 15 minutes
command = "swaylockfx";
}
];
};
}