nix/home/file/sway/module/Font.nix

11 lines
132 B
Nix
Raw Normal View History

{
2024-11-04 04:37:29 +03:00
config,
...
}: let
fontName = config.module.style.font.sansSerif.name;
in {
text = ''
font "${fontName} Medium 0.01"
'';
2024-04-06 03:03:58 +03:00
}