add restruct2

This commit is contained in:
cnst
2024-06-28 15:09:29 +02:00
parent 82a4545886
commit f06e9e9fad
19 changed files with 198 additions and 205 deletions

21
hosts/core/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"
];
})
];
}