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

10 lines
135 B
Nix
Raw Normal View History

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