Move all files from from the nix folder

This commit is contained in:
Dave Gallant
2021-01-17 01:47:47 -05:00
parent c04db05438
commit 90f561608d
18 changed files with 4 additions and 18 deletions

29
main/fonts.nix Normal file
View File

@@ -0,0 +1,29 @@
{ pkgs, ... }:
{
# Set system-wide fonts.
fonts.fonts = with pkgs; [
dejavu_fonts
fira-code
fira-code-symbols
fira-mono
font-awesome
google-fonts
liberation_ttf # Free replacement for MS Fonts.
noto-fonts
noto-fonts
noto-fonts-cjk
noto-fonts-cjk
noto-fonts-emoji
noto-fonts-emoji
noto-fonts-extra
];
# Set default fonts.
fonts.fontconfig.defaultFonts = {
sansSerif = [ "Noto Sans" ];
serif = [ "Noto Serif" ];
monospace = [ "MesloLGS Nerd Font" "Noto Sans Mono" ];
emoji = [ "Noto Color Emoji" ];
};
}