nixos-infra/users/rus07tam/modules/hyprland/hyprtoolkit.nix
Rustam Efimov 30ce0dafc2
Some checks failed
Nix CI / build (push) Failing after 31s
initial commit
2026-04-01 08:50:01 +03:00

25 lines
576 B
Nix

{
config,
pkgs,
...
}:
let
inherit (config.theme) colors;
font = config.stylix.fonts.serif.name;
font-size = config.stylix.fonts.sizes.popups;
in
{
home.packages = with pkgs; [ wofi-emoji ];
xdg.configFile."hypr/hyprtoolkit.conf".text = ''
background = 0x${colors.base00}
base = 0x${colors.base01}
alternate_base = 0x${colors.base02}
text = 0x${colors.base05}
bright_text = 0x${colors.base06}
accent = 0x${colors.base0D}
accent_secondary = 0x${colors.base0E}
font_family = ${font}
font_size = ${toString font-size}
'';
}