• Migrates configuration files from 'common' to 'global' • Updates import paths across modules • Removes outdated macOS configuration • Adds user configuration files WIP
43 lines
781 B
Nix
43 lines
781 B
Nix
{ pkgs, lib, ... }:
|
|
{
|
|
fonts = {
|
|
packages = with pkgs; [
|
|
# icon fonts
|
|
material-symbols
|
|
|
|
# Sans(Serif) fonts
|
|
lexend
|
|
noto-fonts
|
|
noto-fonts-emoji
|
|
roboto
|
|
(google-fonts.override {
|
|
fonts = [
|
|
"Inter"
|
|
"Laila"
|
|
];
|
|
})
|
|
|
|
# monospace fonts
|
|
monocraft
|
|
monocraft-nerd-fonts
|
|
|
|
# nerdfonts
|
|
nerd-fonts.fira-code
|
|
nerd-fonts.symbols-only
|
|
];
|
|
|
|
# causes more issues than it solves
|
|
enableDefaultPackages = false;
|
|
|
|
# user defined fonts
|
|
fontconfig = {
|
|
enable = true;
|
|
defaultFonts = {
|
|
serif = [ "Laila" ];
|
|
sansSerif = [ "Lexend" ];
|
|
monospace = [ "Monocraft" ];
|
|
emoji = [ "Noto Color Emoji" ];
|
|
};
|
|
};
|
|
};
|
|
}
|