summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstuebinm2024-02-22 17:49:45 +0100
committerstuebinm2024-02-22 17:50:11 +0100
commit86ced9c8aa3afef3d6cefb38328ed03f38bdfbf0 (patch)
treee952b4c202be802c31aabde41c5d5736d812d832
parent26faacc997e5af6d8c63569d644851daa534a68b (diff)
desktop: add noto cjk fonts
though it seems a little blurry at low resolutions. might have to tweak stuff / see if i can find a better font.
-rw-r--r--common/desktop.nix9
1 files changed, 8 insertions, 1 deletions
diff --git a/common/desktop.nix b/common/desktop.nix
index d59b4d8..89bd86d 100644
--- a/common/desktop.nix
+++ b/common/desktop.nix
@@ -77,7 +77,6 @@
#boot.kernelParams = [ "console=tty1" ];
hardware.opengl.enable = true;
- fonts.enableDefaultPackages = true;
programs.xwayland.enable = false;
programs.wireshark.enable = true;
xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-wlr ];
@@ -85,6 +84,14 @@
xdg.portal.config.common.default = "*";
services.flatpak.enable = true;
+ fonts.enableDefaultPackages = true;
+ fonts.packages = with pkgs; [
+ noto-fonts
+ noto-fonts-cjk
+ noto-fonts-cjk-serif
+ noto-fonts-emoji
+ ];
+
# Enable sound.
sound.enable = true;
hardware.pulseaudio.enable = true;