mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 02:25:12 -05:00
feat: switched back to hyprland
This commit is contained in:
parent
dd99b3a827
commit
b0dc23c7c0
144 changed files with 1347 additions and 477 deletions
42
home/modules/swaylock/config/settings.nix
Executable file
42
home/modules/swaylock/config/settings.nix
Executable file
|
@ -0,0 +1,42 @@
|
|||
{flake, ...}: let
|
||||
inherit (flake.config.aesthetics.themes.theme) colors font;
|
||||
in {
|
||||
font = font;
|
||||
indicator-idle-visible = true;
|
||||
indicator-radius = 100;
|
||||
indicator-thickness = 20;
|
||||
show-failed-attempts = true;
|
||||
|
||||
bs-hl-color = colors.red;
|
||||
color = colors.base;
|
||||
key-hl-color = colors.mauve;
|
||||
|
||||
caps-lock-bs-hl-color = colors.red;
|
||||
caps-lock-key-hl-color = colors.mauve;
|
||||
|
||||
inside-color = colors.base;
|
||||
inside-clear-color = colors.base;
|
||||
inside-caps-lock-color = colors.base;
|
||||
inside-ver-color = colors.base;
|
||||
inside-wrong-color = colors.base;
|
||||
|
||||
line-color = colors.base;
|
||||
line-clear-color = colors.base;
|
||||
line-caps-lock-color = colors.base;
|
||||
line-ver-color = colors.base;
|
||||
line-wrong-color = colors.base;
|
||||
|
||||
ring-color = colors.crust;
|
||||
ring-clear-color = colors.crust;
|
||||
ring-caps-lock-color = colors.crust;
|
||||
ring-ver-color = colors.crust;
|
||||
ring-wrong-color = colors.crust;
|
||||
|
||||
separator-color = "00000000";
|
||||
|
||||
text-color = colors.text;
|
||||
text-clear-color = colors.text;
|
||||
text-caps-lock-color = colors.text;
|
||||
text-ver-color = colors.text;
|
||||
text-wrong-color = colors.text;
|
||||
}
|
9
home/modules/swaylock/default.nix
Executable file
9
home/modules/swaylock/default.nix
Executable file
|
@ -0,0 +1,9 @@
|
|||
{flake, ...}: let
|
||||
configPath = ./config;
|
||||
settingsPath = import (configPath + "/settings.nix") {inherit flake;};
|
||||
in {
|
||||
programs.swaylock = {
|
||||
enable = true;
|
||||
settings = settingsPath;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue