11 lines
272 B
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" ]; })
|
|
]);
|
|
}
|