11 lines
324 B
Nix
11 lines
324 B
Nix
{ pkgs, ... }:
|
|
let
|
|
i3lock-color = "${pkgs.i3lock-color}/bin/i3lock-color";
|
|
in
|
|
{
|
|
services.screen-locker = {
|
|
enable = true;
|
|
lockCmd = '' ${i3lock-color} -B 10 --greeter-text="Welcome back $USER" --greeter-color="#ffffff" --date-color="#ffffff" --time-color="#ffffff" '';
|
|
inactiveInterval = 10; # miutes
|
|
};
|
|
}
|