15 lines
313 B
Nix
15 lines
313 B
Nix
{ ... }:
|
|
{
|
|
programs.swaylock = {
|
|
enable = true;
|
|
settings = {
|
|
color = "#000000";
|
|
indicator-caps-lock = true;
|
|
indicator-idle-visible = true;
|
|
indicator-radius = 100;
|
|
indicator-thickness = 10;
|
|
font = "JetBrainsMono Nerd Font Regular";
|
|
font-size = 20;
|
|
};
|
|
};
|
|
}
|