From 2ce2f1e6b15ed26c8b18c972b27be508445ce11c Mon Sep 17 00:00:00 2001 From: kat witch Date: Sun, 12 Sep 2021 15:04:00 +0100 Subject: [PATCH] profiles/gui: iosevka -> iosevka-bin --- config/modules/home/theme.nix | 4 ++-- config/profiles/gui/fonts.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config/modules/home/theme.nix b/config/modules/home/theme.nix index adfed078..645bcaaa 100644 --- a/config/modules/home/theme.nix +++ b/config/modules/home/theme.nix @@ -38,11 +38,11 @@ let cfg = config.kw.theme; in font = { name = mkOption { type = types.str; - default = "Iosevka"; + default = "Iosevka SS10"; }; termName = mkOption { type = types.str; - default = "Iosevka Term"; + default = "Iosevka Term SS10"; }; size = mkOption { type = types.float; diff --git a/config/profiles/gui/fonts.nix b/config/profiles/gui/fonts.nix index d8b6abd8..8b96f421 100644 --- a/config/profiles/gui/fonts.nix +++ b/config/profiles/gui/fonts.nix @@ -16,9 +16,9 @@ }; fonts.fonts = with pkgs; [ - iosevka + emacs-all-the-icons-fonts font-awesome cozette twitter-color-emoji - ]; + ] ++ map (variant: iosevka-bin.override { inherit variant; } ) [ "" "ss10" "aile" ]; }