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