configuration.nix/home/sway/swayidle.nix

16 lines
351 B
Nix
Raw Normal View History

2023-03-29 21:48:55 +05:30
{ pkgs, ... }: {
2023-03-15 22:11:59 +05:30
services.swayidle.enable = true;
services.swayidle.events = [
2023-03-25 22:10:09 +05:30
{
event = "before-sleep";
command = "${pkgs.swaylock}/bin/swaylock -f -i /tmp/lockpaper.jpg";
}
2023-03-15 22:11:59 +05:30
];
services.swayidle.timeouts = [
2023-03-25 22:10:09 +05:30
{
timeout = 600;
command = "${pkgs.swaylock}/bin/swaylock -f -i /tmp/lockpaper.jpg";
}
2023-03-15 22:11:59 +05:30
];
}