nixos/system/fonts.nix
Torjus Håkestad 8548ef4607
All checks were successful
Run nix flake check / flake-check (push) Successful in 2m26s
Periodic flake update / flake-update (push) Successful in 1m51s
nerdfonts package changed
2024-11-30 11:50:08 +01:00

20 lines
428 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [ twemoji-color-font ];
fonts.packages = with pkgs; [
fira-code
fira-code-symbols
font-awesome
nerd-fonts.jetbrains-mono
nerd-fonts.fira-code
nerd-fonts.droid-sans-mono
nerd-fonts.dejavu-sans-mono
noto-fonts
noto-fonts-cjk-sans
noto-fonts-emoji
noto-fonts-monochrome-emoji
source-sans-pro
twemoji-color-font
];
}