style: font

This commit is contained in:
Sweetbread 2025-03-31 14:55:54 +03:00
parent f1fe966094
commit b9d4406b93
3 changed files with 19 additions and 15 deletions

View File

@ -17,19 +17,13 @@
helix helix
]; ];
fonts.packages = with pkgs; [ fonts = {
jetbrains-mono enableDefaultPackages = false;
noto-fonts packages = with pkgs; [
(google-fonts.override{fonts=["Press Start 2P" "Overpass Mono"];}) jetbrains-mono # Best mono font
noto-fonts-emoji noto-fonts-cjk-sans # Japanese
noto-fonts-cjk-sans powerline-symbols # Console decoration
twemoji-color-font unifont # Other
font-awesome
powerline-fonts
powerline-symbols
ubuntu_font_family
unifont
nerd-fonts.symbols-only
corefonts
]; ];
};
} }

View File

@ -27,6 +27,11 @@
package = pkgs.jetbrains-mono; package = pkgs.jetbrains-mono;
}; };
emoji = {
package = pkgs.noto-fonts-monochrome-emoji;
name = "Noto Emoji";
};
sizes = { sizes = {
applications = 13; applications = 13;
desktop = 12; desktop = 12;

View File

@ -32,6 +32,11 @@
package = (pkgs.google-fonts.override { fonts = [ "Gabriela" ]; }); package = (pkgs.google-fonts.override { fonts = [ "Gabriela" ]; });
}; };
emoji = {
package = pkgs.noto-fonts-monochrome-emoji;
name = "Noto Emoji";
};
sizes = { sizes = {
applications = 13; applications = 13;
desktop = 12; desktop = 12;