add restruct

This commit is contained in:
cnst
2024-06-27 17:07:56 +02:00
parent c1fcbb5529
commit 97789f807b
9 changed files with 30 additions and 63 deletions

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