swap main fonts to recursive
This commit is contained in:
parent
1063d950ce
commit
3ddd283c85
2 changed files with 9 additions and 6 deletions
|
@ -8,8 +8,8 @@
|
||||||
y = 10;
|
y = 10;
|
||||||
};
|
};
|
||||||
font = lib.mkForce {
|
font = lib.mkForce {
|
||||||
normal.family = config.fontProfiles.bitmap.family;
|
normal.family = config.fontProfiles.monospace.family;
|
||||||
size = 12;
|
size = 11;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,14 +1,17 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
recursive
|
||||||
|
];
|
||||||
fontProfiles = {
|
fontProfiles = {
|
||||||
enable = true;
|
enable = true;
|
||||||
monospace = {
|
monospace = {
|
||||||
family = "JetBrains Mono Nerd Font";
|
family = "RecMonoCasual Nerd Font";
|
||||||
package = pkgs.nerdfonts.override { fonts = [ "JetBrainsMono" ]; };
|
package = pkgs.nerdfonts.override { fonts = [ "Recursive" ]; };
|
||||||
};
|
};
|
||||||
regular = {
|
regular = {
|
||||||
family = "Fira Sans";
|
family = "Recursive Sans Linear Static";
|
||||||
package = pkgs.fira;
|
package = pkgs.recursive;
|
||||||
};
|
};
|
||||||
bitmap = {
|
bitmap = {
|
||||||
family = "TamzenForPowerline";
|
family = "TamzenForPowerline";
|
||||||
|
|
Loading…
Add table
Reference in a new issue