nix/module/desktop/waybar/style/Common.nix

10 lines
251 B
Nix
Raw Normal View History

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