Break fonts out into their own module
More will go here
This commit is contained in:
parent
46cd32c557
commit
7ff91eb99a
3 changed files with 15 additions and 5 deletions
12
system/modules/fonts.nix
Normal file
12
system/modules/fonts.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
fonts = {
|
||||
fonts = with pkgs; [
|
||||
nerdfonts
|
||||
noto-fonts-emoji
|
||||
twitter-color-emoji
|
||||
];
|
||||
|
||||
fontconfig.defaultFonts.emoji = ["Twitter Color Emoji"];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue