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

12 lines
No EOL
233 B
Nix

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