Revert "Switch to using JetBrainsMono (incl. nerd font variant)"

This reverts commit a8975dbd74.
This commit is contained in:
Evie Litherland-Smith 2024-01-11 15:51:48 +00:00
parent 2d1ac368f5
commit 18a5236695
4 changed files with 12 additions and 13 deletions

View file

@ -130,14 +130,13 @@
package = pkgs.noto-fonts-emoji;
};
monospace = {
name = "JetBrainsMono Nerd Font";
package = (pkgs.nerdfonts.override {
fonts = [ "JetBrainsMono" ];
});
name = "FiraCode Nerd Font";
package =
(pkgs.nerdfonts.override { fonts = [ "FiraCode" ]; });
};
sansSerif = {
name = "Noto Sans";
package = pkgs.noto-fonts;
name = "Fira Sans";
package = pkgs.fira;
};
serif = sansSerif;
};
@ -145,11 +144,11 @@
};
fonts = {
packages = with pkgs; [
noto-fonts
noto-fonts-emoji
jetbrains-mono
fira
fira-mono
fira-code
(nerdfonts.override {
fonts = [ "JetBrainsMono" "NerdFontsSymbolsOnly" ];
fonts = [ "FiraCode" "NerdFontsSymbolsOnly" ];
})
emacs-all-the-icons-fonts
weather-icons

View file

@ -1,7 +1,7 @@
* {
all: unset;
font-size: 14px;
font-family: "Noto Sans";
font-family: "Fira Sans";
transition: 200ms;
}

View file

@ -41,7 +41,7 @@
*/
* {
font-family: "JetBrainsMono Nerd Font";
font-family: "FiraCode Nerd Font";
font-size: 16px;
}

View file

@ -31,7 +31,7 @@
((theme (make-instance
'theme:theme
:dark-p t
:font-family "Noto Sans"
:font-family "Fira Sans"
:text-color "#ffffff"
:contrast-text-color "#000000"
:background-color "#0d0e1c"