Evie Litherland-Smith
1cccd418b5
Move default swaylock-effects command into script "swaylockfx" to reuse for swayidle
13 lines
210 B
Nix
13 lines
210 B
Nix
{...}: {
|
|
imports = [../swaylock/default.nix];
|
|
services.swayidle = {
|
|
enable = true;
|
|
timeouts = [
|
|
{
|
|
timeout = 60 * 15; # 15 minutes
|
|
command = "swaylockfx";
|
|
}
|
|
];
|
|
};
|
|
}
|