nix/home/config/waybar/style/Common.nix

11 lines
245 B
Nix
Raw Normal View History

{ config, ... }:
{
text = ''
* {
font-family: "${config.style.font.serif.name}", "Terminess Nerd Font Propo";
font-size: ${toString config.style.font.size.desktop}px;
color: #${config.style.color.fg.light};
}
'';
2024-05-02 04:47:21 +03:00
}