add fonts

This commit is contained in:
Aditya 2024-04-10 23:16:46 +05:30
parent 48447ae5a5
commit 20bcb45771
Signed by: aditya
SSH key fingerprint: SHA256:jL1IvWsjjlPtw6HvDIHfXfhO9IkIokNEyIfuFhSdoyU
3 changed files with 8 additions and 6 deletions

View file

@ -33,12 +33,6 @@
# Select internationalisation properties.
fonts.packages = with pkgs; [
source-han-serif
noto-fonts-emoji
noto-fonts-cjk
];
# Enable the X11 windowing system.
services.xserver.enable = true;

View file

@ -3,6 +3,7 @@
./bluetooth
./bootloader
./filesystem
./fonts
./hardware
./kernel
./locale

View file

@ -0,0 +1,7 @@
{pkgs, ...}: {
fonts.packages = with pkgs; [
source-han-serif
noto-fonts-emoji
noto-fonts-cjk
];
}