nixos-config/modules/fonts/default.nix

39 lines
893 B
Nix
Raw Normal View History

2021-11-21 19:07:12 +01:00
{
2022-03-01 22:19:03 +01:00
lib,
pkgs,
config,
...
}:
with lib; let
cfg = config.eboskma.fonts;
in {
options.eboskma.fonts = {enable = mkEnableOption "activate fonts";};
2021-11-21 19:07:12 +01:00
config = mkIf cfg.enable {
fonts = {
fontDir.enable = true;
fonts = with pkgs; [
2022-03-01 22:19:03 +01:00
(nerdfonts.override {fonts = ["CascadiaCode" "DroidSansMono" "FantasqueSansMono" "FiraCode" "Iosevka" "JetBrainsMono" "Meslo" "Noto" "SourceCodePro"];})
2021-11-21 19:07:12 +01:00
dejavu_fonts
2021-11-22 18:56:59 +01:00
google-fonts
2021-11-21 19:07:12 +01:00
kochi-substitute
2021-12-06 09:58:39 +01:00
material-icons
2021-11-21 19:07:12 +01:00
noto-fonts-emoji
corefonts
recursive
ttf_bitstream_vera
];
fontconfig = {
defaultFonts = {
2022-03-01 22:19:03 +01:00
serif = ["Recursive Sans Casual Static Medium"];
sansSerif = ["Recursive Sans Linear Static Medium"];
monospace = ["Iosevka Nerd Font"];
emoji = ["Noto Color Emoji"];
2021-11-21 19:07:12 +01:00
};
};
};
};
}