1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-11 07:10:39 +02:00

refactor: remove stylix and some other unused stuff

This commit is contained in:
oddlama 2025-06-07 13:44:32 +02:00
parent 4324219f64
commit 4fea58a290
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
25 changed files with 81 additions and 9213 deletions

View file

@ -34,30 +34,21 @@
pkgs.noto-fonts-cjk-serif
pkgs.noto-fonts-emoji
pkgs.noto-fonts-extra
pkgs.dejavu_fonts
pkgs.segoe-ui-ttf
pkgs.jetbrains-mono
];
};
stylix.fonts = {
serif = {
package = pkgs.dejavu_fonts;
name = "IBM Plex Serif";
};
sansSerif = {
package = pkgs.segoe-ui-ttf;
name = "Segoe UI";
};
monospace = {
# No need for patched nerd fonts, kitty can pick up on them automatically,
# and ideally every program should do that: https://sw.kovidgoyal.net/kitty/faq/#kitty-is-not-able-to-use-my-favorite-font
package = pkgs.jetbrains-mono;
name = "JetBrains Mono";
};
emoji = {
package = pkgs.segoe-ui-ttf;
name = "Segoe UI Emoji";
fontconfig.defaultFonts = {
serif = [ "IBM Plex Serif" ];
sansSerif = [ "Segoe UI" ];
emoji = [ "Segoe UI Emoji" ];
monospace = [
# No need for patched nerd fonts, kitty can pick up on them automatically,
# and ideally every program should do that: https://sw.kovidgoyal.net/kitty/faq/#kitty-is-not-able-to-use-my-favorite-font
"JetBrains Mono"
];
};
};
}