big restruct

This commit is contained in:
cnst
2024-08-02 21:27:09 +02:00
parent c65a8ac71d
commit f99d9fe4e5
364 changed files with 95 additions and 84 deletions

29
sys/etc/fonts/default.nix Normal file
View File

@@ -0,0 +1,29 @@
{pkgs, ...}: {
fonts.packages = with pkgs; [
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
liberation_ttf
fira-code-symbols
font-awesome
recursive
input-fonts
(nerdfonts.override {
fonts = [
"JetBrainsMono"
"FiraCode"
"FiraMono"
"Iosevka"
"3270"
"DroidSansMono"
"SourceCodePro"
"UbuntuMono"
"Overpass"
"Monoid"
"Mononoki"
"Hack"
"IBMPlexMono"
];
})
];
}