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

View file

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

View file

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

View file

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

View file

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