initial try that failed

This commit is contained in:
Elias Gasparis 2024-11-10 15:47:39 +08:00
parent e68334179c
commit 099ef49629
11 changed files with 711 additions and 0 deletions

21
fonts.nix Normal file
View file

@ -0,0 +1,21 @@
{ 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
];
fonts.fontDir.enable = true;
}