diff --git a/modules/style/fonts.nix b/modules/style/fonts.nix index 1675458..6298b7a 100644 --- a/modules/style/fonts.nix +++ b/modules/style/fonts.nix @@ -3,7 +3,6 @@ pkgs, ... }: let - inherit (config.modules.other.system) username; inherit (builtins) mapAttrs; in { # A (somewhat) sane list of fonts to be installed. @@ -59,14 +58,4 @@ in { decompressFonts = true; }; }; - # this fixes emoji stuff - home-manager.users.${username} = { - fonts.fontconfig = { - defaultFonts = { - monospace = ["ComicShannsMono Nerd Font" "Noto Color Emoji"]; - sansSerif = ["ComicShannsMono Nerd Font" "Noto Color Emoji"]; - serif = ["ComicShannsMono Nerd Font" "Noto Color Emoji"]; - }; - }; - }; }