Temporary lockscreen fix

This commit is contained in:
Filippo Berto 2021-05-16 19:40:12 +02:00
parent c320c81553
commit c7df83869f
4 changed files with 50 additions and 2 deletions

View file

@ -0,0 +1,9 @@
{ pkgs, ... }:
{
# home.packages = [ pkgs.betterlockscreen ];
services.screen-locker = {
enable = true;
lockCmd = "/usr/bin/betterlockscreen -l";
inactiveInterval = 5; # miutes
};
}