Switch font to Iosevka

This commit is contained in:
Evie Litherland-Smith 2024-01-16 13:52:00 +00:00
parent 5b3a541c08
commit 4aa7dda4f6
5 changed files with 16 additions and 14 deletions

View file

@ -92,6 +92,7 @@
nix = {
enable = true;
settings = {
trusted-users = [ "root" user ];
experimental-features = [ "nix-command" "flakes" ];
auto-optimise-store = true;
};
@ -148,16 +149,18 @@
terminal = 0.8;
};
fonts = rec {
sizes.terminal = 12;
serif = sansSerif;
sansSerif = {
name = "Fira Sans";
package = pkgs.fira;
sizes = {
applications = 14;
desktop = 12;
popups = 12;
terminal = 14;
};
serif = monospace;
sansSerif = monospace;
monospace = {
name = "FiraCode Nerd Font";
name = "Iosevka Nerd Font";
package =
(pkgs.nerdfonts.override { fonts = [ "FiraCode" ]; });
(pkgs.nerdfonts.override { fonts = [ "Iosevka" ]; });
};
emoji = {
name = "Noto Color Emoji";
@ -169,8 +172,6 @@
fonts = {
packages = with pkgs; [
(nerdfonts.override { fonts = [ "NerdFontsSymbolsOnly" ]; })
iosevka
# iosevka-custom
emacs-all-the-icons-fonts
weather-icons
noto-fonts

View file

@ -24,7 +24,7 @@
grey = "#6c7086";
width = 600;
font = "JetBrainsMono Nerd Font 14";
font = "Iosevka Nerd Font 14";
};
"element-text, element-icon , mode-switcher" = {

View file

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

View file

@ -41,8 +41,9 @@
*/
* {
font-family: "FiraCode Nerd Font";
all: unset;
font-size: 16px;
font-family: "Iosevka Nerd Font";
}
window {

View file

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