nixos/system/home/swayidle/default.nix

14 lines
214 B
Nix
Raw Normal View History

{ ... }:
2024-09-11 15:19:43 +01:00
{
imports = [ ../swaylock/default.nix ];
services.swayidle = {
enable = true;
timeouts = [
{
timeout = 60 * 15; # 15 minutes
command = "swaylockfx";
}
];
};
2024-09-11 15:19:43 +01:00
}