dotfiles/home/modules/gui/desktop/hyprland/config/general.nix
2025-01-19 23:40:54 -06:00

18 lines
291 B
Nix
Executable file

{ flake, ... }:
let
inherit (flake.config.aesthetics.themes)
currentTheme
palettes
;
el = palettes.${currentTheme}.colours;
in
{
gaps_in = 5;
gaps_out = 5;
border_size = 2;
"col.active_border" = "rgb(${el.base0E})";
"col.inactive_border" = "0xff${el.base02}";
}