mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
21 lines
479 B
Nix
21 lines
479 B
Nix
{config, ...}: {
|
|
services.swayidle = {
|
|
enable = true;
|
|
timeouts = [
|
|
{
|
|
timeout = 180;
|
|
command = "${config.programs.swaylock.package}/bin/swaylock* -f";
|
|
}
|
|
{
|
|
timeout = 600;
|
|
command = "${config.programs.niri.package}/bin/niri msg action power-off-monitors";
|
|
}
|
|
];
|
|
events = [
|
|
{
|
|
event = "before-sleep";
|
|
command = "${config.programs.swaylock.package}/bin/swaylock* -f";
|
|
}
|
|
];
|
|
};
|
|
}
|