8 lines
144 B
Nix
8 lines
144 B
Nix
{ pkgs, ... }:
|
|
{
|
|
services.screen-locker = {
|
|
enable = true;
|
|
lockCmd = "${pkgs.lockscreen}";
|
|
inactiveInterval = 10; # miutes
|
|
};
|
|
}
|