nichts/nyx/homes/notashelf/programs/graphical/screenlock/swaylock/default.nix
2024-04-09 23:11:33 +02:00

55 lines
1.6 KiB
Nix

{
osConfig,
pkgs,
lib,
...
}: let
inherit (lib) mkIf;
inherit (osConfig) modules;
inherit (osConfig.modules.style.colorScheme) colors;
env = modules.usrEnv;
in {
config = mkIf env.programs.screenlock.swaylock.enable {
programs.swaylock = {
enable = true;
package = with pkgs; swaylock-effects;
settings = {
clock = true;
color = "${colors.base00}";
font = "Work Sans";
show-failed-attempts = false;
indicator = true;
indicator-radius = 200;
indicator-thickness = 20;
line-color = "${colors.base00}";
ring-color = "${colors.base04}";
inside-color = "${colors.base00}";
key-hl-color = "${colors.base0F}";
separator-color = "00000000";
text-color = "${colors.base05}";
text-caps-lock-color = "";
line-ver-color = "${colors.base0F}";
ring-ver-color = "${colors.base0F}";
inside-ver-color = "${colors.base00}";
text-ver-color = "${colors.base05}";
ring-wrong-color = "${colors.base08}";
text-wrong-color = "${colors.base08}";
inside-wrong-color = "${colors.base00}";
inside-clear-color = "${colors.base00}";
text-clear-color = "${colors.base05}";
ring-clear-color = "${colors.base0B}";
line-clear-color = "${colors.base00}";
line-wrong-color = "${colors.base00}";
bs-hl-color = "${colors.base08}";
line-uses-ring = false;
grace = 3;
grace-no-mouse = true;
grace-no-touch = true;
datestr = "%d/%m/%Y";
fade-in = "0.1";
ignore-empty-password = true;
};
};
};
}