Revert "Switch to using JetBrainsMono (incl. nerd font variant)"
This reverts commit a8975dbd74
.
This commit is contained in:
parent
2d1ac368f5
commit
18a5236695
19
flake.nix
19
flake.nix
|
@ -130,14 +130,13 @@
|
||||||
package = pkgs.noto-fonts-emoji;
|
package = pkgs.noto-fonts-emoji;
|
||||||
};
|
};
|
||||||
monospace = {
|
monospace = {
|
||||||
name = "JetBrainsMono Nerd Font";
|
name = "FiraCode Nerd Font";
|
||||||
package = (pkgs.nerdfonts.override {
|
package =
|
||||||
fonts = [ "JetBrainsMono" ];
|
(pkgs.nerdfonts.override { fonts = [ "FiraCode" ]; });
|
||||||
});
|
|
||||||
};
|
};
|
||||||
sansSerif = {
|
sansSerif = {
|
||||||
name = "Noto Sans";
|
name = "Fira Sans";
|
||||||
package = pkgs.noto-fonts;
|
package = pkgs.fira;
|
||||||
};
|
};
|
||||||
serif = sansSerif;
|
serif = sansSerif;
|
||||||
};
|
};
|
||||||
|
@ -145,11 +144,11 @@
|
||||||
};
|
};
|
||||||
fonts = {
|
fonts = {
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
noto-fonts
|
fira
|
||||||
noto-fonts-emoji
|
fira-mono
|
||||||
jetbrains-mono
|
fira-code
|
||||||
(nerdfonts.override {
|
(nerdfonts.override {
|
||||||
fonts = [ "JetBrainsMono" "NerdFontsSymbolsOnly" ];
|
fonts = [ "FiraCode" "NerdFontsSymbolsOnly" ];
|
||||||
})
|
})
|
||||||
emacs-all-the-icons-fonts
|
emacs-all-the-icons-fonts
|
||||||
weather-icons
|
weather-icons
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
* {
|
* {
|
||||||
all: unset;
|
all: unset;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
font-family: "Noto Sans";
|
font-family: "Fira Sans";
|
||||||
transition: 200ms;
|
transition: 200ms;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -41,7 +41,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
* {
|
* {
|
||||||
font-family: "JetBrainsMono Nerd Font";
|
font-family: "FiraCode Nerd Font";
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
((theme (make-instance
|
((theme (make-instance
|
||||||
'theme:theme
|
'theme:theme
|
||||||
:dark-p t
|
:dark-p t
|
||||||
:font-family "Noto Sans"
|
:font-family "Fira Sans"
|
||||||
:text-color "#ffffff"
|
:text-color "#ffffff"
|
||||||
:contrast-text-color "#000000"
|
:contrast-text-color "#000000"
|
||||||
:background-color "#0d0e1c"
|
:background-color "#0d0e1c"
|
||||||
|
|
Loading…
Reference in a new issue