mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-25 10:32:19 +00:00
22 lines
462 B
Nix
22 lines
462 B
Nix
|
{ config, pkgs, ... }: {
|
||
|
programs.swaylock = {
|
||
|
enable = true;
|
||
|
package = pkgs.swaylock-effects;
|
||
|
settings = {
|
||
|
effect-blur = "20x3";
|
||
|
fade-in = 0.1;
|
||
|
|
||
|
font = config.fontProfiles.regular.family;
|
||
|
font-size = 15;
|
||
|
|
||
|
line-uses-inside = true;
|
||
|
disable-caps-lock-text = true;
|
||
|
indicator-caps-lock = true;
|
||
|
indicator-radius = 40;
|
||
|
indicator-idle-visible = true;
|
||
|
indicator-y-position = 1000;
|
||
|
|
||
|
};
|
||
|
};
|
||
|
}
|