2024-12-01 22:23:23 +01:00
|
|
|
{ pkgs-unstable, config, ... }: {
|
2023-07-12 13:52:15 +02:00
|
|
|
# Fonts
|
|
|
|
fonts = {
|
|
|
|
fontconfig = {
|
|
|
|
defaultFonts = {
|
2023-09-21 04:01:02 +02:00
|
|
|
# emoji = [ "Noto Color Emoji" ];
|
2023-08-24 13:43:54 +02:00
|
|
|
monospace = [ "JetBrainsMono Nerd Font" ];
|
2023-09-21 04:01:02 +02:00
|
|
|
# sansSerif = [ "Arimo Nerd Font" "Sarasa Gothic SC" ];
|
|
|
|
# serif = [ "Arimo Nerd Font" "Sarasa Gothic SC" ];
|
2023-07-12 13:52:15 +02:00
|
|
|
};
|
|
|
|
includeUserConf = false;
|
|
|
|
};
|
|
|
|
|
2024-12-01 22:23:23 +01:00
|
|
|
packages = with pkgs-unstable; [
|
2024-12-01 18:58:26 +01:00
|
|
|
# (nerdfonts.override { fonts = [ "Arimo" "JetBrainsMono" ]; })
|
2024-12-01 22:06:41 +01:00
|
|
|
# nerdfonts
|
|
|
|
nerd-fonts.jetbrains-mono
|
|
|
|
nerd-fonts.arimo
|
2023-09-21 04:01:02 +02:00
|
|
|
# noto-fonts-emoji
|
|
|
|
# sarasa-gothic
|
2023-08-14 07:55:14 +02:00
|
|
|
font-awesome
|
2023-07-12 13:52:15 +02:00
|
|
|
];
|
|
|
|
};
|
2024-12-01 18:58:26 +01:00
|
|
|
}
|