nix: move enabling fontDir to linux desktop.nix

This commit is contained in:
Nico 2025-05-03 16:16:00 +10:00
parent 89fd1710c3
commit 591a6999ee
2 changed files with 3 additions and 1 deletions

View file

@ -3,7 +3,6 @@
{ {
# install basic fonts # install basic fonts
fonts = { fonts = {
fontDir.enable = true;
packages = with pkgs; [ packages = with pkgs; [
noto-fonts # most langs and emojis noto-fonts # most langs and emojis
noto-fonts-cjk-sans # gets japanese and chinese langs noto-fonts-cjk-sans # gets japanese and chinese langs

View file

@ -33,5 +33,8 @@
extest.enable = true; extest.enable = true;
}; };
# Enable font dir for compatability
fontDir.enable = true;
services.flatpak.enable = true; services.flatpak.enable = true;
} }