Kiana Sheibani
d4a616275e
It doesn't really make sense to have two different fonts used in different places around the UI. Sticking to one is more convenient and looks better.
36 lines
544 B
Nix
36 lines
544 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = [ pkgs.swaylock-effects ];
|
|
|
|
xdg.configFile."swaylock/config".text =
|
|
''
|
|
ignore-empty-password
|
|
grace-no-mouse
|
|
|
|
fade-in=0.3
|
|
|
|
indicator
|
|
screenshots
|
|
|
|
font=JetBrainsMono
|
|
text-color=ffffff
|
|
|
|
color=00000000
|
|
ring-color=7da6ff
|
|
key-hl-color=7bc5e4
|
|
|
|
line-uses-inside
|
|
|
|
indicator-radius=120
|
|
indicator-thickness=7
|
|
|
|
|
|
clock
|
|
datestr=%a, %Y-%m-%d
|
|
|
|
effect-scale=0.4
|
|
effect-vignette=0.3:0.7
|
|
effect-blur=2x2
|
|
'';
|
|
}
|