nixos/system/fonts.nix

14 lines
253 B
Nix
Raw Normal View History

2024-02-27 03:49:32 +00:00
{ pkgs, ... }:
{
2024-02-27 20:13:42 +00:00
environment.systemPackages = with pkgs; [ twemoji-color-font ];
2024-02-27 03:49:32 +00:00
fonts.packages = with pkgs; [
fira-code
fira-code-symbols
2024-02-27 20:13:42 +00:00
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
twemoji-color-font
font-awesome
2024-02-27 03:49:32 +00:00
];
}