summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/home-manager/swaylock.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/modules/home-manager/swaylock.nix b/modules/home-manager/swaylock.nix
new file mode 100644
index 0000000..07043ea
--- /dev/null
+++ b/modules/home-manager/swaylock.nix
@@ -0,0 +1,18 @@
+{ ... }: {
+ programs.swaylock.enable = true;
+ progrmas.swaylock.settingss = {
+ indicator-radius = 100;
+ indicator-thickness = 7;
+ ring-color = "455a64";
+ key-hl-color = "be5046";
+ text-color = "ffc107";
+ line-color = 00000000;
+ inside-color = 00000088;
+ separator-color = 00000000;
+ fade-in = 4;
+ effect-blur = "7x3";
+ effect-scale = 2;
+ effect-vignette = "0.5:0.5";
+ # effect-compose = [ "0,1.5%;-1x10%;$HOME/.config/sway/lock.svg" "$@" ];
+ };
+}