236 current 2025-01-11 21:28:50 25.05.20241217.d3c42f1 6.6.66 *

This commit is contained in:
2025-01-11 21:29:00 -05:00
parent 7aed127aee
commit 723763bdcd
3 changed files with 28 additions and 1 deletions

26
system/fonts/fonts.nix Normal file
View File

@@ -0,0 +1,26 @@
{pkgs, ...}: {
fonts = {
enableDefaultPackages = true;
packages = with pkgs; [
corefonts
fira-code
fira-code-symbols
font-awesome_4
font-awesome_5
inconsolata
ipaexfont
jetbrains-mono
noto-fonts-cjk-sans
noto-fonts-cjk-serif
siji
ubuntu_font_family
];
fontconfig = {
enable = true;
defaultFonts = {
monospace = ["Fira Code"];
};
};
};
}