Fresh repo without sensitive data.
This commit is contained in:
commit
9003080a64
44 changed files with 2039 additions and 0 deletions
27
config/fonts.nix
Normal file
27
config/fonts.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ pkgs, config, ... }:
|
||||
|
||||
{
|
||||
fonts = {
|
||||
enableFontDir = true;
|
||||
enableGhostscriptFonts = true;
|
||||
fontconfig = {
|
||||
enable = true;
|
||||
ultimate.enable = true;
|
||||
includeUserConf = false;
|
||||
};
|
||||
fonts = with pkgs; [
|
||||
corefonts # Microsoft free fonts
|
||||
dejavu_fonts
|
||||
inconsolata # monospaced
|
||||
noto-fonts-cjk
|
||||
powerline-fonts
|
||||
source-han-sans-japanese
|
||||
source-han-sans-korean
|
||||
source-han-sans-simplified-chinese
|
||||
source-han-sans-traditional-chinese
|
||||
symbola
|
||||
ubuntu_font_family
|
||||
wqy_microhei
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue