nix/home/config/sway/module/Font.nix

9 lines
179 B
Nix
Raw Normal View History

2024-07-27 16:13:29 +03:00
{ config, ... }: let
fontName = config.style.font.sansSerif.name;
# fontSize = toString config.style.font.size.desktop;
in {
2024-04-06 03:03:58 +03:00
text = ''
2024-07-27 16:13:29 +03:00
font "${fontName} Medium 0.001"
2024-04-06 03:03:58 +03:00
'';
}