aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/desktop/sway/sway-idle.nix
blob: 7db37bfdaccdd912ae0ac4cecbc9b039eda3c4c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ pkgs, config, ... }:

{
  services.swayidle = {
    enable = true;
    timeouts = [{
      timeout = 300;
      command = "${pkgs.swaylock}/bin/swaylock -fF -c 1D2021";
    }];
  };
}