mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-21 15:53:32 +01:00
hyprlock: override new stylix settings
This commit is contained in:
parent
26c306bc2f
commit
3b914aaa7e
@ -1,3 +1,8 @@
|
||||
{ lib, ... }:
|
||||
|
||||
let
|
||||
inherit (lib) mkForce;
|
||||
in
|
||||
{
|
||||
programs.hyprlock = {
|
||||
enable = true;
|
||||
@ -8,7 +13,7 @@
|
||||
grace = 2;
|
||||
};
|
||||
|
||||
background = {
|
||||
background = mkForce {
|
||||
color = "rgba(25, 20, 20, 1.0)";
|
||||
path = "screenshot";
|
||||
blur_passes = 2;
|
||||
@ -29,9 +34,9 @@
|
||||
size = "50, 50";
|
||||
dots_size = 0.33;
|
||||
dots_spacing = 0.15;
|
||||
outer_color = "rgba(25, 20, 20, 0)";
|
||||
inner_color = "rgba(25, 20, 20, 0)";
|
||||
font_color = "rgba(222, 222, 222, 1.0)";
|
||||
outer_color = mkForce "rgba(25, 20, 20, 0)";
|
||||
inner_color = mkForce "rgba(25, 20, 20, 0)";
|
||||
font_color = mkForce "rgba(222, 222, 222, 1.0)";
|
||||
placeholder_text = "パスワード";
|
||||
};
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user