BIG RESTRUCT

This commit is contained in:
cnst
2024-06-24 20:27:04 +02:00
parent 1b75dc88c4
commit c130053edf
323 changed files with 83677 additions and 38 deletions

21
hosts/pkgs/fonts.nix Normal file
View File

@@ -0,0 +1,21 @@
{ pkgs, ... }:
{
fonts.packages = with pkgs; [
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
liberation_ttf
fira-code-symbols
font-awesome
jetbrains-mono
(nerdfonts.override {
fonts = [
"JetBrainsMono"
"FiraCode"
"Iosevka"
"3270"
"DroidSansMono"
];
})
];
}