pinwheel: Extract fonts to fonts module

This commit is contained in:
Alexander Heldt
2023-10-16 22:32:07 +02:00
parent 5718df21a5
commit 65b43bfd84
2 changed files with 10 additions and 8 deletions

View File

@@ -0,0 +1,10 @@
{ pkgs, ... }:
{
fonts.packages = [
pkgs.noto-fonts
pkgs.noto-fonts-cjk
pkgs.noto-fonts-emoji
pkgs.nerdfonts
pkgs.liberation_ttf
];
}