reNixos/hand7s/programs/swaylock.nix
2025-04-27 12:47:02 +03:00

18 lines
298 B
Nix

{
config,
lib,
...
}: {
programs = {
swaylock = {
enable = lib.mkIf (
config.home.gui.sessionType == "Sway"
)
true;
settings = {
show-failed-attempts = true;
};
};
};
}