Move modules into modules/

This commit is contained in:
Dave Gallant
2023-07-09 12:28:15 -04:00
parent d2c0d94580
commit 6e19c4512d
10 changed files with 10 additions and 10 deletions

24
modules/common/fonts.nix Normal file
View File

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