-
-
Notifications
You must be signed in to change notification settings - Fork 173
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nixOS KDE plasma stylix breaks emojis in notifications #448
Comments
Related: #201 |
As pointed out in the linked issue: this is probably caused by not having the emoji font as a fallback under sans-serif. |
I tried to explicitly define fonts: stylix.fonts = {
/*
sizes = {
applications = 10;
terminal = 12;
desktop = 10;
popups = 9;
}; */
serif = {
package = pkgs.dejavu_fonts;
name = "DejaVu Serif";
};
monospace = {
package = pkgs.nerdfonts;
name = "Fira Code nerd Font Mono";
};
sansSerif = {
package = pkgs.dejavu_fonts;
name = "DejaVu Sans";
};
emoji = {
package = pkgs.noto-fonts-emoji;
name = "Noto Color Emoji";
};
}; but the problem persisted, my workaround above is still needed. But maybe this issue should be closed in favour of that mencioned above? |
In extension to #201, we should also automatically include the emoji font as a fallback to fix this issue - so some more changes are needed. |
Describe the bug
It's not all emojis that are missing, it's the equivalent of this issue in stack exchange.
The bug can also be seen in the
WIN + V
window with the clipboard history, everything else, the emoji picker, fonts in the terminal etc. is working, so i believe it's a plasma specific issueSteps To Reproduce
I have stylix installed just as a home manager module
My stylix config
If needed, here is my config.
Expected behavior
Workaround
Following this thread, as a workaround we can use the file Kubuntu uses, putting the file
56-kubuntu-noto.conf
attached below in~/.config/fontconfig/conf.d/
.FILE ATTACHED: 56-kubuntu-noto.txt, change the name to
56-kubuntu-noto.conf
.Or use this home manager configuration:
Additional context
It's not a nixOS problem, its a stylix problem, as the first issue I made was a nixpkgs one:
NixOS/nixpkgs#321826
Metadata
Add a 👍 reaction to issues you find important.
The text was updated successfully, but these errors were encountered: