36 lines
843 B
Nix
36 lines
843 B
Nix
{ lib, ... }:
|
|
{
|
|
programs.swaylock = {
|
|
enable = true;
|
|
settings = lib.mkForce {
|
|
image = "$HOME/Pictures/Wallpapers/rain.gif";
|
|
#show-keyboard-layout = true;
|
|
font = "JetbrainsMono Nerd Font";
|
|
font-size = 24;
|
|
text-color = "cdd6f4";
|
|
|
|
# indicator
|
|
indicator-idle-visible = true;
|
|
indicator-radius = 150;
|
|
indicator-thickness = 20;
|
|
inside-color = "11111b00";
|
|
|
|
key-hl-color = "fab387";
|
|
|
|
line-uses-ring = true;
|
|
line-color = "cdd6f400";
|
|
line-clear-color = "cdd6f400";
|
|
line-wrong-color = "cdd6f400";
|
|
line-caps-lock-color = "cdd6f400";
|
|
line-ver-color = "cdd6f400";
|
|
|
|
ring-color = "cba6f7";
|
|
ring-clear-color = "89dceb";
|
|
ring-caps-color = "74c7ec";
|
|
ring-ver-color = "a6e3a1";
|
|
ring-wrong-color = "f38ba8";
|
|
};
|
|
};
|
|
|
|
}
|