flake/home/applications/swaylock/default.nix

14 lines
314 B
Nix
Raw Normal View History

2024-09-20 17:38:01 +00:00
{ inputs, pkgs, ... }:
{
programs.swaylock = {
enable = true;
settings = {
daemonize = true;
2024-07-21 06:49:16 +00:00
show-failed-attempts = true;
show-keyboard-layout = true;
2024-08-15 14:12:14 +00:00
image = toString inputs.self.legacyPackages.${pkgs.stdenv.hostPlatform.system}.background;
2024-07-21 06:49:16 +00:00
scaling = "fill";
};
};
}