Improve folder structure

This commit is contained in:
Dave Gallant
2021-01-16 23:31:14 -05:00
parent 3e13f04043
commit 73e8011316
11 changed files with 300 additions and 164 deletions

39
nix/main/fonts.nix Normal file
View File

@@ -0,0 +1,39 @@
{ 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"
];
};
}