14 lines
214 B
Nix
14 lines
214 B
Nix
{ ... }:
|
|
{
|
|
imports = [ ../swaylock/default.nix ];
|
|
services.swayidle = {
|
|
enable = true;
|
|
timeouts = [
|
|
{
|
|
timeout = 60 * 15; # 15 minutes
|
|
command = "swaylockfx";
|
|
}
|
|
];
|
|
};
|
|
}
|