BIG refactoring

This commit is contained in:
Charlie Root 2024-05-20 23:55:11 +02:00
commit 325f16a9d5
12 changed files with 343 additions and 28 deletions

View file

@ -1,10 +1,30 @@
{ pkgs, ... }: {
fonts.packages = with pkgs; [
material-design-icons
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
noto-fonts
noto-fonts-cjk-sans
noto-fonts-cjk-serif
noto-fonts-emoji
];
fonts = {
packages = with pkgs; [
material-icons
material-design-icons
(nerdfonts.override { fonts = [ "Iosevka" "JetBrainsMono" ]; })
noto-fonts
noto-fonts-cjk
noto-fonts-cjk
noto-fonts-emoji
jetbrains-mono
lexend
];
# What does this do?
enableDefaultPackages = false;
# this fixes emoji stuff
fontconfig = {
defaultFonts = {
monospace = [
"JetBrainsMono Nerd Font"
"Noto Color Emoji"
];
sansSerif = ["Lexend" "Noto Color Emoji"];
serif = ["Noto Serif" "Noto Color Emoji"];
emoji = ["Noto Color Emoji"];
};
};
}
}