pantheon/systems/modules/fonts.nix
2025-03-06 16:42:41 +08:00

8 lines
180 B
Nix

{ pkgs, ... }: {
# Enable basic fonts for reasonable Unicode coverage
fonts.enableDefaultPackages = true;
fonts.packages = with pkgs; [
nerd-fonts.terminess-ttf
];
}