nix-dotfiles/home/services/screen-locker.nix
2024-06-08 12:42:12 +02:00

8 lines
129 B
Nix

{ config, pkgs, lib, ... }:
{
services.screen-locker = {
enable = true;
lockCmd = lib.getExe pkgs.i3lock-fancy;
};
}