nixos/system/fonts.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
460 B
Nix
Raw Permalink Normal View History

2024-02-27 21:20:00 +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-07-11 11:19:20 +00:00
font-awesome
2024-07-11 11:22:31 +00:00
(nerdfonts.override {
fonts = [
"JetBrainsMono"
"FiraCode"
"DroidSansMono"
"DejaVuSansMono"
];
})
2024-02-27 20:13:42 +00:00
noto-fonts
2024-10-24 19:27:53 +00:00
noto-fonts-cjk-sans
2024-02-27 20:13:42 +00:00
noto-fonts-emoji
2024-02-29 08:27:26 +00:00
noto-fonts-monochrome-emoji
2024-03-02 20:16:23 +00:00
source-sans-pro
2024-02-27 20:13:42 +00:00
twemoji-color-font
2024-02-27 03:49:32 +00:00
];
}