nix/module/desktop/waybar/style/Common.nix
2024-05-24 04:43:01 +03:00

10 lines
209 B
Nix

{ style, ... }: {
text = ''
* {
font-family: "${style.font.serif.name}", "Terminess Nerd Font Propo";
font-size: ${toString(style.font.size.desktop)}px;
color: #${style.color.fg.light};
}
'';
}