nix/hosts/nixos-laptop/home-manager/swaylock-conf.nix

12 lines
234 B
Nix
Raw Normal View History

2023-08-18 02:48:05 +02:00
{ pkgs, config, ... }: {
programs.swaylock = {
enable = true;
settings = {
color = "808080";
font-size = 24;
show-failed-attempts = true;
effect-blur = "20x2";
screenshots = true;
2023-08-18 02:48:55 +02:00
};
2023-08-18 02:49:30 +02:00
};
2023-08-18 02:48:05 +02:00
}