7ff91eb99a
More will go here
12 lines
208 B
Nix
12 lines
208 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
fonts = {
|
|
fonts = with pkgs; [
|
|
nerdfonts
|
|
noto-fonts-emoji
|
|
twitter-color-emoji
|
|
];
|
|
|
|
fontconfig.defaultFonts.emoji = ["Twitter Color Emoji"];
|
|
};
|
|
}
|