nixos/modules/fonts.nix
ISnortPennies b2af978996 cleaned up flake
condensed and cleaned up home-manager configuration
moved nix settings to nix.nix (nice name i know)
moved all shell configuration to shell.nix
moved default package exclusion to packages.nix
switched to nitch from neofetch
moved font from overlay
removed almost pointless librewolf home-manager configuration
changed wallpaper
2023-01-30 02:44:40 -05:00

23 lines
583 B
Nix

{pkgs, ...}: {
fonts = {
fonts = with pkgs; [
overpass
material-design-icons
(nerdfonts.override
{
fonts = ["Overpass"];
})
];
fontDir.enable = true;
fontconfig = {
enable = true;
defaultFonts = {
serif = ["Overpass" "Overpass Nerd Font" "Material Design Icons"];
sansSerif = ["Overpass" "Overpass Nerd Font" "Material Design Icons"];
monospace = ["Overpass Mono" "OverpassMono Nerd Font" "Material Design Icons"];
};
hinting.enable = true;
antialias = true;
};
};
}