Update NixOS config.

This commit is contained in:
Elias Gasparis 2025-01-05 07:56:48 +08:00
parent 05a01e9941
commit 4b0e204074
6 changed files with 1 additions and 1 deletions

22
nixosModules/fonts.nix Normal file
View file

@ -0,0 +1,22 @@
{ config, pkgs, ... }:
{
# Fonts
fonts.packages = with pkgs; [
corefonts
vistafonts
noto-fonts
noto-fonts-cjk-sans
noto-fonts-cjk-serif
noto-fonts-emoji
liberation_ttf
fira-code
fira-code-symbols
mplus-outline-fonts.githubRelease
dina-font
proggyfonts
iosevka
];
fonts.fontDir.enable = true;
}