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