nix/hosts/nixos-laptop/home-manager/swaylock-conf.nix
2023-08-18 09:48:05 +09:00

13 lines
No EOL
239 B
Nix

{ pkgs, config, ... }: {
programs.swaylock = {
enable = true;
settings = {
color = "808080";
font-size = 24;
show-failed-attempts = true;
effect-blur = "20x2";
screenshots = true;
}
}
}