dotfiles/home/modules/gui/desktop/hyprland/config/general.nix

19 lines
300 B
Nix
Raw Normal View History

2025-01-18 03:50:54 -06:00
{ flake, ... }:
let
inherit (flake.config.aesthetics.themes)
currentThemes
2025-01-18 03:50:54 -06:00
palettes
;
el = palettes.${currentThemes.theme0}.colours;
2025-01-18 03:50:54 -06:00
in
2025-01-08 01:05:45 -06:00
{
gaps_in = 5;
gaps_out = 5;
border_size = 2;
2025-01-18 03:50:54 -06:00
"col.active_border" = "rgb(${el.base0E})";
"col.inactive_border" = "0xff${el.base02}";
2025-01-08 01:05:45 -06:00
}