mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
8 lines
244 B
Nix
8 lines
244 B
Nix
{ config, pkgs, ... }: {
|
|
fonts.fonts = with pkgs; [
|
|
cantarell-fonts
|
|
font-awesome
|
|
cozette
|
|
(nerdfonts.override { fonts = [ "Iosevka" ]; })
|
|
] ++ map (variant: iosevka-bin.override { inherit variant; } ) [ "" "ss10" "aile" ];
|
|
}
|