terminal: revert to kitty, since some fonts act weird on ghostty

This commit is contained in:
Christoph Hollizeck 2025-12-15 16:46:46 +01:00
parent e515aae340
commit 595b997e3f
Signed by: Daholli
GPG key ID: 249300664F2AF2C7
4 changed files with 29 additions and 31 deletions

View file

@ -1,23 +1,19 @@
{
flake.modules.nixos.base =
{ pkgs, ... }:
{
environment.variables = {
# Enable icons in tooling since we have nerdfonts.
LOG_ICONS = "true";
fonts = {
enableDefaultPackages = true;
packages = with pkgs; [
nerd-fonts.fira-code
nerd-fonts.jetbrains-mono
nerd-fonts.symbols-only
];
fontconfig = {
useEmbeddedBitmaps = true;
};
};
fonts.packages = with pkgs; [
font-awesome
powerline-fonts
powerline-symbols
nerd-fonts.code-new-roman
nerd-fonts.fira-code
nerd-fonts.symbols-only
nerd-fonts.jetbrains-mono
fira
];
};
}