12 lines
362 B
Nix
12 lines
362 B
Nix
{ pkgs, ... }: {
|
|
services.swayidle = {
|
|
enable = true;
|
|
events = [
|
|
{ event = "before-sleep"; command = "${pkgs.way-lockscreen}/bin/way-lockscreen"; }
|
|
{ event = "lock"; command = "${pkgs.way-lockscreen}/bin/way-lockscreen"; }
|
|
];
|
|
timeouts = [
|
|
{ timeout = 60; command = "${pkgs.way-lockscreen}/bin/way-lockscreen"; }
|
|
];
|
|
};
|
|
}
|