aboutsummaryrefslogtreecommitdiff
path: root/home/rices/schrottkatze/swayidle.nix
blob: 6d8525c9ad9286d396c03d583fbd6bc51110e9b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{pkgs, ...}: {
  services.swayidle = {
    enable = true;
    events = [
      {
        event = "before-sleep";
        command = "${pkgs.swaylock}/bin/swaylock -fF -c 442244";
      }
      {
        event = "lock";
        command = "swaylock -c 441144";
      }
    ];
  };
}