nixdots/system/roles/workstation/programs/physlock.nix

9 lines
215 B
Nix
Raw Normal View History

2024-04-15 21:22:23 +00:00
{
# Screen locker which works across all virtual terminals
# Use `systemctl start physlock` to securely lock the screen
services.physlock = {
enable = true;
lockMessage = "System is locked...";
};
}