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

13 lines
210 B
Nix
Raw Normal View History

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