Reorganize
This commit is contained in:
parent
0ce1331346
commit
b506e8af60
27 changed files with 2045 additions and 98 deletions
12
modules/graphical/fonts.nix
Normal file
12
modules/graphical/fonts.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{pkgs, ...}: {
|
||||
fonts = {
|
||||
enableDefaultPackages = false;
|
||||
packages = with pkgs; [inter nerd-fonts.fira-code twitter-color-emoji];
|
||||
fontconfig.defaultFonts = rec {
|
||||
serif = ["Inter"];
|
||||
sansSerif = serif;
|
||||
monospace = ["FiraCode Nerd Font"];
|
||||
emoji = ["Twitter Color Emoji"];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue