summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDevin Finlinson <devin.finlinson@pm.me>2024-01-13 09:10:04 -0700
committerDevin Finlinson <devin.finlinson@pm.me>2024-01-13 09:10:04 -0700
commit5ca074c476dfa4d8e81ebfee257810f61a16d110 (patch)
tree1a84fb536c0edcb2fe796c61966e170a03393432 /modules
parentad515149a30a89803cc37e6fea46a05162e2eed1 (diff)
add file for swaylock config
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" "$@" ];
+ };
+}