nixos-config/modules/home/settings/fonts/packages/default.nix

11 lines
272 B
Nix

{ config, lib, pkgsStable, ... }:
{
home.packages = lib.mkIf config.home.desktop.enable (with pkgsStable; [
liberation_ttf
twitter-color-emoji
noto-fonts
sarasa-gothic
ubuntu_font_family
(nerdfonts.override { fonts = [ "UbuntuMono" ]; })
]);
}