Fix broken swaylock config

Had swaylock enable key in wrong place
This commit is contained in:
Evie Litherland-Smith 2023-04-28 11:49:38 +01:00
parent 1eaa2ff333
commit c26950fc2f

View file

@ -16,23 +16,25 @@
jq jq
socat socat
]; ];
programs.swaylock.settings = { programs.swaylock = {
enable = true; enable = true;
screenshots = true; package = pkgs.swaylock-effects;
clock = true; settings = {
indicator = true; screenshots = true;
indicator-radius = 100; clock = true;
indicator-thickness = 7; indicator = true;
effect-blur = "7x5"; indicator-radius = 100;
effect-vignette = "0.5:0.5"; indicator-thickness = 7;
ring-color = "bb00cc"; effect-blur = "7x5";
key-hl-color = "00000000"; effect-vignette = "0.5:0.5";
line-color = "00000088"; ring-color = "bb00cc";
separator-color = "00000000"; key-hl-color = "00000000";
grace = 2; line-color = "00000088";
fade-in = 0.2; separator-color = "00000000";
grace = 2;
fade-in = 0.2;
};
}; };
programs.swaylock.package = pkgs.swaylock-effects;
programs.eww = { programs.eww = {
enable = true; enable = true;
package = pkgs.eww-wayland; package = pkgs.eww-wayland;