swap main fonts to recursive

This commit is contained in:
insects 2024-08-21 19:10:48 +02:00
parent 1063d950ce
commit 3ddd283c85
2 changed files with 9 additions and 6 deletions

View file

@ -8,8 +8,8 @@
y = 10;
};
font = lib.mkForce {
normal.family = config.fontProfiles.bitmap.family;
size = 12;
normal.family = config.fontProfiles.monospace.family;
size = 11;
};
};
};

View file

@ -1,14 +1,17 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
recursive
];
fontProfiles = {
enable = true;
monospace = {
family = "JetBrains Mono Nerd Font";
package = pkgs.nerdfonts.override { fonts = [ "JetBrainsMono" ]; };
family = "RecMonoCasual Nerd Font";
package = pkgs.nerdfonts.override { fonts = [ "Recursive" ]; };
};
regular = {
family = "Fira Sans";
package = pkgs.fira;
family = "Recursive Sans Linear Static";
package = pkgs.recursive;
};
bitmap = {
family = "TamzenForPowerline";