Initial commit

This commit is contained in:
demenik
2025-12-01 18:24:34 +01:00
commit fc68fa5ce9
142 changed files with 6273 additions and 0 deletions

31
home/stylix/fonts.nix Normal file
View File

@@ -0,0 +1,31 @@
{pkgs, ...}: {
stylix.fonts = rec {
sansSerif = {
package = pkgs.nerd-fonts.ubuntu;
name = "Ubuntu Nerd Font";
};
serif = sansSerif;
monospace = {
package = pkgs.nerd-fonts.jetbrains-mono;
name = "JetBrainsMono Nerd Font";
};
emoji = {
package = pkgs.twemoji-color-font;
name = "Twitter Color Emoji";
};
};
home.packages = with pkgs; [
noto-fonts-cjk-sans
];
fonts.fontconfig.defaultFonts = let
font = ["Ubuntu Nerd Font" "Noto Sans CJK"];
in {
sansSerif = font;
serif = font;
};
}