Files
nixos/system/fonts.nix

24 lines
524 B
Nix
Raw Normal View History

2026-03-09 21:43:40 +00:00
{ pkgs, ... }:
{
fonts = {
packages = with pkgs; [
nerd-fonts.jetbrains-mono
2026-03-12 23:38:13 +00:00
nerd-fonts.fira-code
2026-04-05 22:47:17 +01:00
noto-fonts
noto-fonts-cjk-sans
noto-fonts-color-emoji
liberation_ttf
2026-03-09 21:43:40 +00:00
];
2026-04-05 22:47:17 +01:00
fontconfig = {
enable = true;
defaultFonts = {
monospace = [ "JetBrainsMono Nerd Font" ];
sansSerif = [ "Noto Sans" ];
serif = [ "Noto Serif" ];
};
};
2026-03-09 21:43:40 +00:00
};
}