nixos/system/fonts.nix
2024-02-27 22:20:00 +01:00

13 lines
253 B
Nix

{ pkgs, ... }: {
environment.systemPackages = with pkgs; [ twemoji-color-font ];
fonts.packages = with pkgs; [
fira-code
fira-code-symbols
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
twemoji-color-font
font-awesome
];
}