zaphyra's git: nixfiles

zaphyra's nixfiles

1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
21 
22 
23 
24 
25 
26 
27 
28 
{
  systemConfig,
  lib,
  pkgs,
  ...
}:

{

  services.swayidle = {
    enable = true;
    timeouts = [
      {
        timeout = 175;
        command = "${lib.getExe systemConfig.programs.niri.package} msg action power-off-monitors";
      }
      {
        timeout = 180;
        command = "${lib.getExe' pkgs.systemd "loginctl"} lock-session";
      }
      {
        timeout = 30 * 60;
        command = "${lib.getExe' pkgs.systemd "systemctl"} spspend";
      }
    ];
  };

}