nix-dotfiles/home/services/screen-locker.nix

8 lines
129 B
Nix
Raw Normal View History

2024-06-08 12:42:12 +02:00
{ config, pkgs, lib, ... }:
{
services.screen-locker = {
enable = true;
lockCmd = lib.getExe pkgs.i3lock-fancy;
};
}