26 lines
616 B
Nix
26 lines
616 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
home.file.".config/alacritty/04_font-settings.toml".text = ''
|
|
# ── Font Settings ─────────────────────────────────────────────────────────
|
|
[font]
|
|
size = 11.0
|
|
|
|
[font.normal]
|
|
family = "Gohu GohuFont"
|
|
style = "Regular"
|
|
|
|
[font.bold]
|
|
family = "Gohu GohuFont"
|
|
style = "Bold"
|
|
|
|
[font.italic]
|
|
family = "Gohu GohuFont"
|
|
style = "Italic"
|
|
|
|
[font.bold_italic]
|
|
family = "Gohu GohuFont"
|
|
style = "Bold Italic"
|
|
|
|
'';
|
|
} |