nixos-config/modules/home/settings/fonts/default.nix
2025-04-18 04:04:57 -04:00

21 lines
519 B
Nix

{ config, lib, pkgsStable, ... }:
{
config = lib.mkIf config.home.desktop.enable {
home.packages = with pkgsStable; [
liberation_ttf
twitter-color-emoji
noto-fonts
sarasa-gothic
ubuntu_font_family
(nerdfonts.override { fonts = [ "UbuntuMono" ]; })
];
fonts.fontconfig = {
enable = true;
defaultFonts = {
sansSerif = [ "Ubuntu" ];
monospace = [ "UbuntuMono Nerd Font Mono" ];
emoji = [ "Twitter Color Emoji" ];
};
};
};
}