NixOS / nixpkgs

Nix Packages collection & NixOS
MIT License
17.69k stars 13.83k forks source link

Fontconfig won't acknowledge system-wide fonts if run as user #341159

Closed tukanoidd closed 4 weeks ago

tukanoidd commented 4 weeks ago

Describe the bug

Hello, I tried to find any info on this through existing issues regarding the fonts but I can't seem to find this issue happening to anyone else. Basically, the fonts I put in fonts.packages only show up in fc-list when I run it as root, and only DejaVu is visible/usable when run as user. It doesn't completely break my system, but I can't properly use any of my terminals because of weird rendering artifacts and tons of missing symbols.

Steps To Reproduce

Steps to reproduce the behavior:

  1. Add font to fonts.packages
  2. Rebuild the system and (optionally, in my case the behaviour doesn't change) reboot
  3. Run fc-list and only get the DajaVu entry
  4. Run sudo fc-list and get all the installed font entries

Expected behavior

Fonts are available for both root and normal user (as it used to).

Screenshots

Not screenshots, but respective outputs of sudo fc-list and fc-list:

/nix/store/ac3cny7i85v3zba06cbcvi73xjkbwrja-nerdfonts-3.2.1/share/fonts/opentype/NerdFonts/MonaspiceArNerdFont-Light.otf: MonaspiceAr Nerd Font,MonaspiceAr NF,MonaspiceAr NF Light:style=Light,Regular
/nix/store/ac3cny7i85v3zba06cbcvi73xjkbwrja-nerdfonts-3.2.1/share/fonts/truetype/NerdFonts/FantasqueSansMNerdFontPropo-Bold.ttf: FantasqueSansM Nerd Font Propo:style=Bold
/nix/store/j5nrlwfqj8b020c0ql6yp11kqarnm098-ibm-plex-6.4.0/share/fonts/opentype/IBMPlexSansCondensed-ThinItalic.otf: IBM Plex Sans Condensed,IBM Plex Sans Cond Thin:style=Thin Italic,Italic
/nix/store/j5nrlwfqj8b020c0ql6yp11kqarnm098-ibm-plex-6.4.0/share/fonts/opentype/IBMPlexSansThai-Thin.otf: IBM Plex Sans Thai,IBM Plex Sans Thai Thin:style=Thin,Regular
/nix/store/ac3cny7i85v3zba06cbcvi73xjkbwrja-nerdfonts-3.2.1/share/fonts/truetype/NerdFonts/iMWritingMonoNerdFontMono-Bold.ttf: iMWritingMono Nerd Font Mono:style=Bold
/nix/store/ac3cny7i85v3zba06cbcvi73xjkbwrja-nerdfonts-3.2.1/share/fonts/truetype/NerdFonts/ZedMonoNerdFont-ExtendedBoldOblique.ttf: ZedMono Nerd Font,ZedMono NF,ZedMono NF Extd Obl:style=Extended Bold Oblique,Bold Italic
/nix/store/j5nrlwfqj8b020c0ql6yp11kqarnm098-ibm-plex-6.4.0/share/fonts/opentype/IBMPlexSansHebrew-ExtraLight.otf: IBM Plex Sans Hebrew,IBM Plex Sans Hebrew ExtLt:style=ExtraLight,Regular
/nix/store/ac3cny7i85v3zba06cbcvi73xjkbwrja-nerdfonts-3.2.1/share/fonts/opentype/NerdFonts/MonaspiceXeNerdFontMono-BoldItalic.otf: MonaspiceXe Nerd Font Mono,MonaspiceXe NFM:style=Bold Italic
/nix/store/ac3cny7i85v3zba06cbcvi73xjkbwrja-nerdfonts-3.2.1/share/fonts/truetype/NerdFonts/NotoSerifNerdFont-SemiCondensedBlackItalic.ttf: NotoSerif Nerd Font,NotoSerif NF,NotoSerif NF SemCond Black:style=SemiCondensed Black Italic,Italic
/nix/store/ac3cny7i85v3zba06cbcvi73xjkbwrja-nerdfonts-3.2.1/share/fonts/truetype/NerdFonts/NotoSerifNerdFont-SemiCondensedItalic.ttf: NotoSerif Nerd Font,NotoSerif NF,NotoSerif NF SemCond:style=SemiCondensed Italic,Italic
/nix/store/ac3cny7i85v3zba06cbcvi73xjkbwrja-nerdfonts-3.2.1/share/fonts/truetype/NerdFonts/TerminessNerdFontMono-Bold.ttf: Terminess Nerd Font Mono:style=Bold
/nix/store/r17k297af8609szxmmzjbad1hk1lz7xx-liberation-fonts-2.1.5/share/fonts/truetype/LiberationSans-Italic.ttf: Liberation Sans:style=Italic
/nix/store/ac3cny7i85v3zba06cbcvi73xjkbwrja-nerdfonts-3.2.1/share/fonts/truetype/NerdFonts/NotoSerifNerdFontPropo-CondensedMediumItalic.ttf: NotoSerif Nerd Font Propo,NotoSerif NFP,NotoSerif NFP Cond Med:style=Condensed Medium Italic,Italic
/nix/store/ac3cny7i85v3zba06cbcvi73xjkbwrja-nerdfonts-3.2.1/share/fonts/truetype/NerdFonts/IosevkaTermNerdFontPropo-MediumItalic.ttf: IosevkaTerm Nerd Font Propo,IosevkaTerm NFP,IosevkaTerm NFP Medium:style=Medium Italic,Italic
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/truetype/lexend/deca/LexendDeca-Regular.ttf: Lexend Deca:style=Regular
.... (Many, many more, literally thousands of entries)
/nix/store/am3y2gs2rj2fd13jvd3j2m9g5646dnw6-dejavu-fonts-minimal-2.37/share/fonts/truetype/DejaVuSans.ttf: DejaVu Sans:style=Book

Additional context

Font config:

  fonts = {
    enableDefaultPackages = true;
    packages = with pkgs; [
      fira-code
      fira-code-symbols
      fira
      ibm-plex
      jetbrains-mono
      powerline-fonts
      material-symbols
      jost
      lexend
      noto-fonts-cjk
      noto-fonts-emoji
      roboto
      font-awesome_5
      font-awesome_4
      iosevka
      iosevka-comfy.comfy-fixed
      nerdfonts
    ];
  };

I also tried running the "fc-cache -rv", but it didnt help. Output:

Font directories:
    /home/xpar_vitalii/.local/share/fonts
    /nix/store/iffpx3k03rymb8r7f1cf3chkii9alagk-desktops/share/fonts
    /home/xpar_vitalii/.local/share/flatpak/exports/share/fonts
    /var/lib/flatpak/exports/share/fonts
    /home/xpar_vitalii/.nix-profile/share/fonts
    /nix/profile/share/fonts
    /home/xpar_vitalii/.local/state/nix/profile/share/fonts
    /etc/profiles/per-user/xpar_vitalii/share/fonts
    /nix/var/nix/profiles/default/share/fonts
    /run/current-system/sw/share/fonts
    /nix/store/am3y2gs2rj2fd13jvd3j2m9g5646dnw6-dejavu-fonts-minimal-2.37
    /nix/store/am3y2gs2rj2fd13jvd3j2m9g5646dnw6-dejavu-fonts-minimal-2.37/share
    /nix/store/am3y2gs2rj2fd13jvd3j2m9g5646dnw6-dejavu-fonts-minimal-2.37/share/fonts
    /nix/store/am3y2gs2rj2fd13jvd3j2m9g5646dnw6-dejavu-fonts-minimal-2.37/share/fonts/truetype
/home/xpar_vitalii/.local/share/fonts: caching, new cache contents: 0 fonts, 0 dirs
/nix/store/iffpx3k03rymb8r7f1cf3chkii9alagk-desktops/share/fonts: skipping, no such directory
/home/xpar_vitalii/.local/share/flatpak/exports/share/fonts: skipping, no such directory
/var/lib/flatpak/exports/share/fonts: skipping, no such directory
/home/xpar_vitalii/.nix-profile/share/fonts: skipping, no such directory
/nix/profile/share/fonts: skipping, no such directory
/home/xpar_vitalii/.local/state/nix/profile/share/fonts: skipping, no such directory
/etc/profiles/per-user/xpar_vitalii/share/fonts: skipping, no such directory
/nix/var/nix/profiles/default/share/fonts: skipping, no such directory
/run/current-system/sw/share/fonts: skipping, no such directory
/nix/store/am3y2gs2rj2fd13jvd3j2m9g5646dnw6-dejavu-fonts-minimal-2.37: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/am3y2gs2rj2fd13jvd3j2m9g5646dnw6-dejavu-fonts-minimal-2.37/share: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/am3y2gs2rj2fd13jvd3j2m9g5646dnw6-dejavu-fonts-minimal-2.37/share/fonts: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/am3y2gs2rj2fd13jvd3j2m9g5646dnw6-dejavu-fonts-minimal-2.37/share/fonts/truetype: caching, new cache contents: 1 fonts, 0 dirs
/nix/store/am3y2gs2rj2fd13jvd3j2m9g5646dnw6-dejavu-fonts-minimal-2.37/share: skipping, looped directory detected
/nix/store/am3y2gs2rj2fd13jvd3j2m9g5646dnw6-dejavu-fonts-minimal-2.37/share/fonts: skipping, looped directory detected
/nix/store/am3y2gs2rj2fd13jvd3j2m9g5646dnw6-dejavu-fonts-minimal-2.37/share/fonts/truetype: skipping, looped directory detected
/home/xpar_vitalii/.local/cache/fontconfig: cleaning cache directory
/var/cache/fontconfig: not cleaning unwritable cache directory
/run/current-system/sw/bin/fc-cache: succeeded

And sudo fc-list -rv:

Font directories:
    /nix/store/a4gaj6w4ckwmsbqcjrrn1linm5426bn4-fira-code-6.2
    /nix/store/iy8bpg5czvlvrjy14p6380lbfgilm65g-fira-code-symbols-20160811
    /nix/store/j5nrlwfqj8b020c0ql6yp11kqarnm098-ibm-plex-6.4.0
    /nix/store/wbr1p23lyy0dwr6p30k7jwk6wnq2mfi0-jetbrains-mono-2.304
    /nix/store/rl25ynzjpn1y9m52wb2jzh34f2j0rrin-powerline-fonts-unstable-2018-11-11
    /nix/store/1j4dsg637g4gi3izm16038xg7hpg9aly-material-symbols-4.0.0-unstable-2024-05-17
    /nix/store/423sv9q4sj1gw6h32hz8m3brmhjsm2xh-jost-3.5
    /nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22
    /nix/store/f0wlpdjdgfc98q1mq0k9q6bml9b09a7w-noto-fonts-cjk-sans-2.004
    /nix/store/aycxh6s2gc3v48xcjdyf0wfm5cqsw78k-roboto-2.138
    /nix/store/9zv0yb7cr4fxmn5mbx5bdxiik2zqxshf-font-awesome-5.15.4
    /nix/store/i43lkzlgiwqhnryfhisbf6qi2a9qzpa9-font-awesome-4.7.0
    /nix/store/xa6vydqr03151gwvcfq8iaji0kd75nz2-Iosevka-31.5.0
    /nix/store/9qwns7nrbcbrf4j962qaj04gyn2gsc6r-iosevka-comfy-fixed-2.0.0
    /nix/store/ac3cny7i85v3zba06cbcvi73xjkbwrja-nerdfonts-3.2.1
    /nix/store/pczgm78xyd3k095s788x6qsddyqnc25g-fira-4.301
    /nix/store/vhznny9c8ghf9pbnhw6d04m2i3wyyz5j-font-cursor-misc-1.0.4
    /nix/store/j09nsskywgf4h907mw0rl9zksan27gdr-font-misc-misc-1.1.3
    /nix/store/27ql12r30p693npbikn0k25ivhhzknd0-dejavu-fonts-2.37
    /nix/store/cffj78m8wy1ps10p3jpwbwrq781g8k4g-freefont-ttf-20120503
    /nix/store/wf7qy0laf8p0rjdwh96baqjqxb8pk2nm-gyre-fonts-2.005
    /nix/store/r17k297af8609szxmmzjbad1hk1lz7xx-liberation-fonts-2.1.5
    /nix/store/1j05rf2vpdabvrgd6rnijqnbs24w51n8-unifont-15.1.05
    /nix/store/2q5985zz2cbv4l5ynnq5dps5fzdkkdl1-noto-fonts-color-emoji-2.042
    /root/.local/share/fonts
    /nix/store/gd48d17q66b8g5ji6qhyz7j88zdcw3x0-desktops/share/fonts
    /root/.local/share/flatpak/exports/share/fonts
    /var/lib/flatpak/exports/share/fonts
    /root/.nix-profile/share/fonts
    /nix/profile/share/fonts
    /root/.local/state/nix/profile/share/fonts
    /etc/profiles/per-user/root/share/fonts
    /nix/var/nix/profiles/default/share/fonts
    /run/current-system/sw/share/fonts
    /nix/store/am3y2gs2rj2fd13jvd3j2m9g5646dnw6-dejavu-fonts-minimal-2.37
    /nix/store/a4gaj6w4ckwmsbqcjrrn1linm5426bn4-fira-code-6.2/share
    /nix/store/iy8bpg5czvlvrjy14p6380lbfgilm65g-fira-code-symbols-20160811/share
    /nix/store/j5nrlwfqj8b020c0ql6yp11kqarnm098-ibm-plex-6.4.0/share
    /nix/store/wbr1p23lyy0dwr6p30k7jwk6wnq2mfi0-jetbrains-mono-2.304/share
    /nix/store/rl25ynzjpn1y9m52wb2jzh34f2j0rrin-powerline-fonts-unstable-2018-11-11/share
    /nix/store/1j4dsg637g4gi3izm16038xg7hpg9aly-material-symbols-4.0.0-unstable-2024-05-17/share
    /nix/store/423sv9q4sj1gw6h32hz8m3brmhjsm2xh-jost-3.5/share
    /nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share
    /nix/store/f0wlpdjdgfc98q1mq0k9q6bml9b09a7w-noto-fonts-cjk-sans-2.004/share
    /nix/store/aycxh6s2gc3v48xcjdyf0wfm5cqsw78k-roboto-2.138/share
    /nix/store/9zv0yb7cr4fxmn5mbx5bdxiik2zqxshf-font-awesome-5.15.4/share
    /nix/store/i43lkzlgiwqhnryfhisbf6qi2a9qzpa9-font-awesome-4.7.0/share
    /nix/store/xa6vydqr03151gwvcfq8iaji0kd75nz2-Iosevka-31.5.0/share
    /nix/store/9qwns7nrbcbrf4j962qaj04gyn2gsc6r-iosevka-comfy-fixed-2.0.0/share
    /nix/store/ac3cny7i85v3zba06cbcvi73xjkbwrja-nerdfonts-3.2.1/share
    /nix/store/pczgm78xyd3k095s788x6qsddyqnc25g-fira-4.301/share
    /nix/store/vhznny9c8ghf9pbnhw6d04m2i3wyyz5j-font-cursor-misc-1.0.4/lib
    /nix/store/j09nsskywgf4h907mw0rl9zksan27gdr-font-misc-misc-1.1.3/lib
    /nix/store/27ql12r30p693npbikn0k25ivhhzknd0-dejavu-fonts-2.37/share
    /nix/store/cffj78m8wy1ps10p3jpwbwrq781g8k4g-freefont-ttf-20120503/share
    /nix/store/wf7qy0laf8p0rjdwh96baqjqxb8pk2nm-gyre-fonts-2.005/share
    /nix/store/r17k297af8609szxmmzjbad1hk1lz7xx-liberation-fonts-2.1.5/share
    /nix/store/1j05rf2vpdabvrgd6rnijqnbs24w51n8-unifont-15.1.05/share
    /nix/store/2q5985zz2cbv4l5ynnq5dps5fzdkkdl1-noto-fonts-color-emoji-2.042/share
    /nix/store/am3y2gs2rj2fd13jvd3j2m9g5646dnw6-dejavu-fonts-minimal-2.37/share
    /nix/store/a4gaj6w4ckwmsbqcjrrn1linm5426bn4-fira-code-6.2/share/fonts
    /nix/store/iy8bpg5czvlvrjy14p6380lbfgilm65g-fira-code-symbols-20160811/share/fonts
    /nix/store/j5nrlwfqj8b020c0ql6yp11kqarnm098-ibm-plex-6.4.0/share/fonts
    /nix/store/wbr1p23lyy0dwr6p30k7jwk6wnq2mfi0-jetbrains-mono-2.304/share/fonts
    /nix/store/rl25ynzjpn1y9m52wb2jzh34f2j0rrin-powerline-fonts-unstable-2018-11-11/share/consolefonts
    /nix/store/rl25ynzjpn1y9m52wb2jzh34f2j0rrin-powerline-fonts-unstable-2018-11-11/share/fonts
    /nix/store/1j4dsg637g4gi3izm16038xg7hpg9aly-material-symbols-4.0.0-unstable-2024-05-17/share/fonts
    /nix/store/423sv9q4sj1gw6h32hz8m3brmhjsm2xh-jost-3.5/share/fonts
    /nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts
    /nix/store/f0wlpdjdgfc98q1mq0k9q6bml9b09a7w-noto-fonts-cjk-sans-2.004/share/fonts
    /nix/store/aycxh6s2gc3v48xcjdyf0wfm5cqsw78k-roboto-2.138/share/fonts
    /nix/store/9zv0yb7cr4fxmn5mbx5bdxiik2zqxshf-font-awesome-5.15.4/share/fonts
    /nix/store/i43lkzlgiwqhnryfhisbf6qi2a9qzpa9-font-awesome-4.7.0/share/fonts
    /nix/store/xa6vydqr03151gwvcfq8iaji0kd75nz2-Iosevka-31.5.0/share/fonts
    /nix/store/9qwns7nrbcbrf4j962qaj04gyn2gsc6r-iosevka-comfy-fixed-2.0.0/share/fonts
    /nix/store/ac3cny7i85v3zba06cbcvi73xjkbwrja-nerdfonts-3.2.1/share/fonts
    /nix/store/pczgm78xyd3k095s788x6qsddyqnc25g-fira-4.301/share/fonts
    /nix/store/vhznny9c8ghf9pbnhw6d04m2i3wyyz5j-font-cursor-misc-1.0.4/lib/X11
    /nix/store/j09nsskywgf4h907mw0rl9zksan27gdr-font-misc-misc-1.1.3/lib/X11
    /nix/store/27ql12r30p693npbikn0k25ivhhzknd0-dejavu-fonts-2.37/share/fonts
    /nix/store/cffj78m8wy1ps10p3jpwbwrq781g8k4g-freefont-ttf-20120503/share/fonts
    /nix/store/wf7qy0laf8p0rjdwh96baqjqxb8pk2nm-gyre-fonts-2.005/share/fonts
    /nix/store/r17k297af8609szxmmzjbad1hk1lz7xx-liberation-fonts-2.1.5/share/doc
    /nix/store/r17k297af8609szxmmzjbad1hk1lz7xx-liberation-fonts-2.1.5/share/fonts
    /nix/store/1j05rf2vpdabvrgd6rnijqnbs24w51n8-unifont-15.1.05/share/fonts
    /nix/store/2q5985zz2cbv4l5ynnq5dps5fzdkkdl1-noto-fonts-color-emoji-2.042/share/fonts
    /nix/store/am3y2gs2rj2fd13jvd3j2m9g5646dnw6-dejavu-fonts-minimal-2.37/share/fonts
    /nix/store/a4gaj6w4ckwmsbqcjrrn1linm5426bn4-fira-code-6.2/share/fonts/truetype
    /nix/store/iy8bpg5czvlvrjy14p6380lbfgilm65g-fira-code-symbols-20160811/share/fonts/opentype
    /nix/store/j5nrlwfqj8b020c0ql6yp11kqarnm098-ibm-plex-6.4.0/share/fonts/opentype
    /nix/store/wbr1p23lyy0dwr6p30k7jwk6wnq2mfi0-jetbrains-mono-2.304/share/fonts/truetype
    /nix/store/rl25ynzjpn1y9m52wb2jzh34f2j0rrin-powerline-fonts-unstable-2018-11-11/share/fonts/bdf
    /nix/store/rl25ynzjpn1y9m52wb2jzh34f2j0rrin-powerline-fonts-unstable-2018-11-11/share/fonts/opentype
    /nix/store/rl25ynzjpn1y9m52wb2jzh34f2j0rrin-powerline-fonts-unstable-2018-11-11/share/fonts/pcf
    /nix/store/rl25ynzjpn1y9m52wb2jzh34f2j0rrin-powerline-fonts-unstable-2018-11-11/share/fonts/truetype
    /nix/store/1j4dsg637g4gi3izm16038xg7hpg9aly-material-symbols-4.0.0-unstable-2024-05-17/share/fonts/TTF
    /nix/store/1j4dsg637g4gi3izm16038xg7hpg9aly-material-symbols-4.0.0-unstable-2024-05-17/share/fonts/woff2
    /nix/store/423sv9q4sj1gw6h32hz8m3brmhjsm2xh-jost-3.5/share/fonts/opentype
    /nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/truetype
    /nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/variable
    /nix/store/f0wlpdjdgfc98q1mq0k9q6bml9b09a7w-noto-fonts-cjk-sans-2.004/share/fonts/opentype
    /nix/store/aycxh6s2gc3v48xcjdyf0wfm5cqsw78k-roboto-2.138/share/fonts/truetype
    /nix/store/9zv0yb7cr4fxmn5mbx5bdxiik2zqxshf-font-awesome-5.15.4/share/fonts/opentype
    /nix/store/i43lkzlgiwqhnryfhisbf6qi2a9qzpa9-font-awesome-4.7.0/share/fonts/opentype
    /nix/store/xa6vydqr03151gwvcfq8iaji0kd75nz2-Iosevka-31.5.0/share/fonts/truetype
    /nix/store/9qwns7nrbcbrf4j962qaj04gyn2gsc6r-iosevka-comfy-fixed-2.0.0/share/fonts/truetype
    /nix/store/ac3cny7i85v3zba06cbcvi73xjkbwrja-nerdfonts-3.2.1/share/fonts/opentype
    /nix/store/ac3cny7i85v3zba06cbcvi73xjkbwrja-nerdfonts-3.2.1/share/fonts/truetype
    /nix/store/pczgm78xyd3k095s788x6qsddyqnc25g-fira-4.301/share/fonts/opentype
    /nix/store/vhznny9c8ghf9pbnhw6d04m2i3wyyz5j-font-cursor-misc-1.0.4/lib/X11/fonts
    /nix/store/j09nsskywgf4h907mw0rl9zksan27gdr-font-misc-misc-1.1.3/lib/X11/fonts
    /nix/store/27ql12r30p693npbikn0k25ivhhzknd0-dejavu-fonts-2.37/share/fonts/truetype
    /nix/store/cffj78m8wy1ps10p3jpwbwrq781g8k4g-freefont-ttf-20120503/share/fonts/truetype
    /nix/store/wf7qy0laf8p0rjdwh96baqjqxb8pk2nm-gyre-fonts-2.005/share/fonts/truetype
    /nix/store/r17k297af8609szxmmzjbad1hk1lz7xx-liberation-fonts-2.1.5/share/doc/liberation-fonts-2.1.5
    /nix/store/r17k297af8609szxmmzjbad1hk1lz7xx-liberation-fonts-2.1.5/share/fonts/truetype
    /nix/store/1j05rf2vpdabvrgd6rnijqnbs24w51n8-unifont-15.1.05/share/fonts/opentype
    /nix/store/2q5985zz2cbv4l5ynnq5dps5fzdkkdl1-noto-fonts-color-emoji-2.042/share/fonts/noto
    /nix/store/am3y2gs2rj2fd13jvd3j2m9g5646dnw6-dejavu-fonts-minimal-2.37/share/fonts/truetype
    /nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/truetype/lexend
    /nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/variable/lexend
    /nix/store/f0wlpdjdgfc98q1mq0k9q6bml9b09a7w-noto-fonts-cjk-sans-2.004/share/fonts/opentype/noto-cjk
    /nix/store/ac3cny7i85v3zba06cbcvi73xjkbwrja-nerdfonts-3.2.1/share/fonts/opentype/NerdFonts
    /nix/store/ac3cny7i85v3zba06cbcvi73xjkbwrja-nerdfonts-3.2.1/share/fonts/truetype/NerdFonts
    /nix/store/vhznny9c8ghf9pbnhw6d04m2i3wyyz5j-font-cursor-misc-1.0.4/lib/X11/fonts/misc
    /nix/store/j09nsskywgf4h907mw0rl9zksan27gdr-font-misc-misc-1.1.3/lib/X11/fonts/misc
    /nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/truetype/lexend/deca
    /nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/truetype/lexend/exa
    /nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/truetype/lexend/giga
    /nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/truetype/lexend/lexend
    /nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/truetype/lexend/mega
    /nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/truetype/lexend/peta
    /nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/truetype/lexend/tera
    /nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/truetype/lexend/zetta
    /nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/variable/lexend/deca
    /nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/variable/lexend/exa
    /nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/variable/lexend/giga
    /nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/variable/lexend/lexend
    /nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/variable/lexend/mega
    /nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/variable/lexend/peta
    /nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/variable/lexend/tera
    /nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/variable/lexend/zetta
/nix/store/a4gaj6w4ckwmsbqcjrrn1linm5426bn4-fira-code-6.2: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/a4gaj6w4ckwmsbqcjrrn1linm5426bn4-fira-code-6.2/share: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/a4gaj6w4ckwmsbqcjrrn1linm5426bn4-fira-code-6.2/share/fonts: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/a4gaj6w4ckwmsbqcjrrn1linm5426bn4-fira-code-6.2/share/fonts/truetype: caching, new cache contents: 6 fonts, 0 dirs
/nix/store/iy8bpg5czvlvrjy14p6380lbfgilm65g-fira-code-symbols-20160811: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/iy8bpg5czvlvrjy14p6380lbfgilm65g-fira-code-symbols-20160811/share: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/iy8bpg5czvlvrjy14p6380lbfgilm65g-fira-code-symbols-20160811/share/fonts: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/iy8bpg5czvlvrjy14p6380lbfgilm65g-fira-code-symbols-20160811/share/fonts/opentype: caching, new cache contents: 1 fonts, 0 dirs
/nix/store/j5nrlwfqj8b020c0ql6yp11kqarnm098-ibm-plex-6.4.0: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/j5nrlwfqj8b020c0ql6yp11kqarnm098-ibm-plex-6.4.0/share: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/j5nrlwfqj8b020c0ql6yp11kqarnm098-ibm-plex-6.4.0/share/fonts: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/j5nrlwfqj8b020c0ql6yp11kqarnm098-ibm-plex-6.4.0/share/fonts/opentype: caching, new cache contents: 120 fonts, 0 dirs
/nix/store/wbr1p23lyy0dwr6p30k7jwk6wnq2mfi0-jetbrains-mono-2.304: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/wbr1p23lyy0dwr6p30k7jwk6wnq2mfi0-jetbrains-mono-2.304/share: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/wbr1p23lyy0dwr6p30k7jwk6wnq2mfi0-jetbrains-mono-2.304/share/fonts: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/wbr1p23lyy0dwr6p30k7jwk6wnq2mfi0-jetbrains-mono-2.304/share/fonts/truetype: caching, new cache contents: 50 fonts, 0 dirs
/nix/store/rl25ynzjpn1y9m52wb2jzh34f2j0rrin-powerline-fonts-unstable-2018-11-11: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/rl25ynzjpn1y9m52wb2jzh34f2j0rrin-powerline-fonts-unstable-2018-11-11/share: caching, new cache contents: 0 fonts, 2 dirs
/nix/store/rl25ynzjpn1y9m52wb2jzh34f2j0rrin-powerline-fonts-unstable-2018-11-11/share/consolefonts: caching, new cache contents: 0 fonts, 0 dirs
/nix/store/rl25ynzjpn1y9m52wb2jzh34f2j0rrin-powerline-fonts-unstable-2018-11-11/share/fonts: caching, new cache contents: 0 fonts, 4 dirs
/nix/store/rl25ynzjpn1y9m52wb2jzh34f2j0rrin-powerline-fonts-unstable-2018-11-11/share/fonts/bdf: caching, new cache contents: 18 fonts, 0 dirs
/nix/store/rl25ynzjpn1y9m52wb2jzh34f2j0rrin-powerline-fonts-unstable-2018-11-11/share/fonts/opentype: caching, new cache contents: 21 fonts, 0 dirs
/nix/store/rl25ynzjpn1y9m52wb2jzh34f2j0rrin-powerline-fonts-unstable-2018-11-11/share/fonts/pcf: caching, new cache contents: 18 fonts, 0 dirs
/nix/store/rl25ynzjpn1y9m52wb2jzh34f2j0rrin-powerline-fonts-unstable-2018-11-11/share/fonts/truetype: caching, new cache contents: 92 fonts, 0 dirs
/nix/store/1j4dsg637g4gi3izm16038xg7hpg9aly-material-symbols-4.0.0-unstable-2024-05-17: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/1j4dsg637g4gi3izm16038xg7hpg9aly-material-symbols-4.0.0-unstable-2024-05-17/share: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/1j4dsg637g4gi3izm16038xg7hpg9aly-material-symbols-4.0.0-unstable-2024-05-17/share/fonts: caching, new cache contents: 0 fonts, 2 dirs
/nix/store/1j4dsg637g4gi3izm16038xg7hpg9aly-material-symbols-4.0.0-unstable-2024-05-17/share/fonts/TTF: caching, new cache contents: 24 fonts, 0 dirs
/nix/store/1j4dsg637g4gi3izm16038xg7hpg9aly-material-symbols-4.0.0-unstable-2024-05-17/share/fonts/woff2: caching, new cache contents: 24 fonts, 0 dirs
/nix/store/423sv9q4sj1gw6h32hz8m3brmhjsm2xh-jost-3.5: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/423sv9q4sj1gw6h32hz8m3brmhjsm2xh-jost-3.5/share: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/423sv9q4sj1gw6h32hz8m3brmhjsm2xh-jost-3.5/share/fonts: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/423sv9q4sj1gw6h32hz8m3brmhjsm2xh-jost-3.5/share/fonts/opentype: caching, new cache contents: 18 fonts, 0 dirs
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts: caching, new cache contents: 0 fonts, 2 dirs
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/truetype: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/truetype/lexend: caching, new cache contents: 0 fonts, 8 dirs
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/truetype/lexend/deca: caching, new cache contents: 9 fonts, 0 dirs
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/truetype/lexend/exa: caching, new cache contents: 9 fonts, 0 dirs
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/truetype/lexend/giga: caching, new cache contents: 9 fonts, 0 dirs
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/truetype/lexend/lexend: caching, new cache contents: 9 fonts, 0 dirs
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/truetype/lexend/mega: caching, new cache contents: 9 fonts, 0 dirs
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/truetype/lexend/peta: caching, new cache contents: 9 fonts, 0 dirs
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/truetype/lexend/tera: caching, new cache contents: 9 fonts, 0 dirs
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/truetype/lexend/zetta: caching, new cache contents: 9 fonts, 0 dirs
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/variable: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/variable/lexend: caching, new cache contents: 0 fonts, 8 dirs
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/variable/lexend/deca: caching, new cache contents: 10 fonts, 0 dirs
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/variable/lexend/exa: caching, new cache contents: 10 fonts, 0 dirs
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/variable/lexend/giga: caching, new cache contents: 10 fonts, 0 dirs
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/variable/lexend/lexend: caching, new cache contents: 10 fonts, 0 dirs
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/variable/lexend/mega: caching, new cache contents: 10 fonts, 0 dirs
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/variable/lexend/peta: caching, new cache contents: 10 fonts, 0 dirs
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/variable/lexend/tera: caching, new cache contents: 10 fonts, 0 dirs
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/variable/lexend/zetta: caching, new cache contents: 10 fonts, 0 dirs
/nix/store/f0wlpdjdgfc98q1mq0k9q6bml9b09a7w-noto-fonts-cjk-sans-2.004: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/f0wlpdjdgfc98q1mq0k9q6bml9b09a7w-noto-fonts-cjk-sans-2.004/share: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/f0wlpdjdgfc98q1mq0k9q6bml9b09a7w-noto-fonts-cjk-sans-2.004/share/fonts: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/f0wlpdjdgfc98q1mq0k9q6bml9b09a7w-noto-fonts-cjk-sans-2.004/share/fonts/opentype: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/f0wlpdjdgfc98q1mq0k9q6bml9b09a7w-noto-fonts-cjk-sans-2.004/share/fonts/opentype/noto-cjk: caching, new cache contents: 60 fonts, 0 dirs
/nix/store/aycxh6s2gc3v48xcjdyf0wfm5cqsw78k-roboto-2.138: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/aycxh6s2gc3v48xcjdyf0wfm5cqsw78k-roboto-2.138/share: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/aycxh6s2gc3v48xcjdyf0wfm5cqsw78k-roboto-2.138/share/fonts: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/aycxh6s2gc3v48xcjdyf0wfm5cqsw78k-roboto-2.138/share/fonts/truetype: caching, new cache contents: 20 fonts, 0 dirs
/nix/store/9zv0yb7cr4fxmn5mbx5bdxiik2zqxshf-font-awesome-5.15.4: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/9zv0yb7cr4fxmn5mbx5bdxiik2zqxshf-font-awesome-5.15.4/share: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/9zv0yb7cr4fxmn5mbx5bdxiik2zqxshf-font-awesome-5.15.4/share/fonts: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/9zv0yb7cr4fxmn5mbx5bdxiik2zqxshf-font-awesome-5.15.4/share/fonts/opentype: caching, new cache contents: 3 fonts, 0 dirs
/nix/store/i43lkzlgiwqhnryfhisbf6qi2a9qzpa9-font-awesome-4.7.0: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/i43lkzlgiwqhnryfhisbf6qi2a9qzpa9-font-awesome-4.7.0/share: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/i43lkzlgiwqhnryfhisbf6qi2a9qzpa9-font-awesome-4.7.0/share/fonts: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/i43lkzlgiwqhnryfhisbf6qi2a9qzpa9-font-awesome-4.7.0/share/fonts/opentype: caching, new cache contents: 1 fonts, 0 dirs
/nix/store/xa6vydqr03151gwvcfq8iaji0kd75nz2-Iosevka-31.5.0: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/xa6vydqr03151gwvcfq8iaji0kd75nz2-Iosevka-31.5.0/share: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/xa6vydqr03151gwvcfq8iaji0kd75nz2-Iosevka-31.5.0/share/fonts: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/xa6vydqr03151gwvcfq8iaji0kd75nz2-Iosevka-31.5.0/share/fonts/truetype: caching, new cache contents: 54 fonts, 0 dirs
/nix/store/9qwns7nrbcbrf4j962qaj04gyn2gsc6r-iosevka-comfy-fixed-2.0.0: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/9qwns7nrbcbrf4j962qaj04gyn2gsc6r-iosevka-comfy-fixed-2.0.0/share: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/9qwns7nrbcbrf4j962qaj04gyn2gsc6r-iosevka-comfy-fixed-2.0.0/share/fonts: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/9qwns7nrbcbrf4j962qaj04gyn2gsc6r-iosevka-comfy-fixed-2.0.0/share/fonts/truetype: caching, new cache contents: 14 fonts, 0 dirs
/nix/store/ac3cny7i85v3zba06cbcvi73xjkbwrja-nerdfonts-3.2.1: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/ac3cny7i85v3zba06cbcvi73xjkbwrja-nerdfonts-3.2.1/share: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/ac3cny7i85v3zba06cbcvi73xjkbwrja-nerdfonts-3.2.1/share/fonts: caching, new cache contents: 0 fonts, 2 dirs
/nix/store/ac3cny7i85v3zba06cbcvi73xjkbwrja-nerdfonts-3.2.1/share/fonts/opentype: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/ac3cny7i85v3zba06cbcvi73xjkbwrja-nerdfonts-3.2.1/share/fonts/opentype/NerdFonts: caching, new cache contents: 312 fonts, 0 dirs
/nix/store/ac3cny7i85v3zba06cbcvi73xjkbwrja-nerdfonts-3.2.1/share/fonts/truetype: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/ac3cny7i85v3zba06cbcvi73xjkbwrja-nerdfonts-3.2.1/share/fonts/truetype/NerdFonts: caching, new cache contents: 1742 fonts, 0 dirs
/nix/store/pczgm78xyd3k095s788x6qsddyqnc25g-fira-4.301: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/pczgm78xyd3k095s788x6qsddyqnc25g-fira-4.301/share: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/pczgm78xyd3k095s788x6qsddyqnc25g-fira-4.301/share/fonts: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/pczgm78xyd3k095s788x6qsddyqnc25g-fira-4.301/share/fonts/opentype: caching, new cache contents: 95 fonts, 0 dirs
/nix/store/vhznny9c8ghf9pbnhw6d04m2i3wyyz5j-font-cursor-misc-1.0.4: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/vhznny9c8ghf9pbnhw6d04m2i3wyyz5j-font-cursor-misc-1.0.4/lib: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/vhznny9c8ghf9pbnhw6d04m2i3wyyz5j-font-cursor-misc-1.0.4/lib/X11: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/vhznny9c8ghf9pbnhw6d04m2i3wyyz5j-font-cursor-misc-1.0.4/lib/X11/fonts: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/vhznny9c8ghf9pbnhw6d04m2i3wyyz5j-font-cursor-misc-1.0.4/lib/X11/fonts/misc: caching, new cache contents: 1 fonts, 0 dirs
/nix/store/j09nsskywgf4h907mw0rl9zksan27gdr-font-misc-misc-1.1.3: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/j09nsskywgf4h907mw0rl9zksan27gdr-font-misc-misc-1.1.3/lib: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/j09nsskywgf4h907mw0rl9zksan27gdr-font-misc-misc-1.1.3/lib/X11: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/j09nsskywgf4h907mw0rl9zksan27gdr-font-misc-misc-1.1.3/lib/X11/fonts: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/j09nsskywgf4h907mw0rl9zksan27gdr-font-misc-misc-1.1.3/lib/X11/fonts/misc: caching, new cache contents: 47 fonts, 0 dirs
/nix/store/27ql12r30p693npbikn0k25ivhhzknd0-dejavu-fonts-2.37: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/27ql12r30p693npbikn0k25ivhhzknd0-dejavu-fonts-2.37/share: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/27ql12r30p693npbikn0k25ivhhzknd0-dejavu-fonts-2.37/share/fonts: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/27ql12r30p693npbikn0k25ivhhzknd0-dejavu-fonts-2.37/share/fonts/truetype: caching, new cache contents: 22 fonts, 0 dirs
/nix/store/cffj78m8wy1ps10p3jpwbwrq781g8k4g-freefont-ttf-20120503: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/cffj78m8wy1ps10p3jpwbwrq781g8k4g-freefont-ttf-20120503/share: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/cffj78m8wy1ps10p3jpwbwrq781g8k4g-freefont-ttf-20120503/share/fonts: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/cffj78m8wy1ps10p3jpwbwrq781g8k4g-freefont-ttf-20120503/share/fonts/truetype: caching, new cache contents: 12 fonts, 0 dirs
/nix/store/wf7qy0laf8p0rjdwh96baqjqxb8pk2nm-gyre-fonts-2.005: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/wf7qy0laf8p0rjdwh96baqjqxb8pk2nm-gyre-fonts-2.005/share: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/wf7qy0laf8p0rjdwh96baqjqxb8pk2nm-gyre-fonts-2.005/share/fonts: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/wf7qy0laf8p0rjdwh96baqjqxb8pk2nm-gyre-fonts-2.005/share/fonts/truetype: caching, new cache contents: 33 fonts, 0 dirs
/nix/store/r17k297af8609szxmmzjbad1hk1lz7xx-liberation-fonts-2.1.5: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/r17k297af8609szxmmzjbad1hk1lz7xx-liberation-fonts-2.1.5/share: caching, new cache contents: 0 fonts, 2 dirs
/nix/store/r17k297af8609szxmmzjbad1hk1lz7xx-liberation-fonts-2.1.5/share/doc: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/r17k297af8609szxmmzjbad1hk1lz7xx-liberation-fonts-2.1.5/share/doc/liberation-fonts-2.1.5: caching, new cache contents: 0 fonts, 0 dirs
/nix/store/r17k297af8609szxmmzjbad1hk1lz7xx-liberation-fonts-2.1.5/share/fonts: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/r17k297af8609szxmmzjbad1hk1lz7xx-liberation-fonts-2.1.5/share/fonts/truetype: caching, new cache contents: 12 fonts, 0 dirs
/nix/store/1j05rf2vpdabvrgd6rnijqnbs24w51n8-unifont-15.1.05: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/1j05rf2vpdabvrgd6rnijqnbs24w51n8-unifont-15.1.05/share: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/1j05rf2vpdabvrgd6rnijqnbs24w51n8-unifont-15.1.05/share/fonts: caching, new cache contents: 2 fonts, 1 dirs
/nix/store/1j05rf2vpdabvrgd6rnijqnbs24w51n8-unifont-15.1.05/share/fonts/opentype: caching, new cache contents: 1 fonts, 0 dirs
/nix/store/2q5985zz2cbv4l5ynnq5dps5fzdkkdl1-noto-fonts-color-emoji-2.042: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/2q5985zz2cbv4l5ynnq5dps5fzdkkdl1-noto-fonts-color-emoji-2.042/share: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/2q5985zz2cbv4l5ynnq5dps5fzdkkdl1-noto-fonts-color-emoji-2.042/share/fonts: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/2q5985zz2cbv4l5ynnq5dps5fzdkkdl1-noto-fonts-color-emoji-2.042/share/fonts/noto: caching, new cache contents: 1 fonts, 0 dirs
/root/.local/share/fonts: skipping, no such directory
/nix/store/gd48d17q66b8g5ji6qhyz7j88zdcw3x0-desktops/share/fonts: skipping, no such directory
/root/.local/share/flatpak/exports/share/fonts: skipping, no such directory
/var/lib/flatpak/exports/share/fonts: skipping, no such directory
/root/.nix-profile/share/fonts: skipping, no such directory
/nix/profile/share/fonts: skipping, no such directory
/root/.local/state/nix/profile/share/fonts: skipping, no such directory
/etc/profiles/per-user/root/share/fonts: skipping, no such directory
/nix/var/nix/profiles/default/share/fonts: skipping, no such directory
/run/current-system/sw/share/fonts: skipping, no such directory
/nix/store/am3y2gs2rj2fd13jvd3j2m9g5646dnw6-dejavu-fonts-minimal-2.37: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/am3y2gs2rj2fd13jvd3j2m9g5646dnw6-dejavu-fonts-minimal-2.37/share: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/am3y2gs2rj2fd13jvd3j2m9g5646dnw6-dejavu-fonts-minimal-2.37/share/fonts: caching, new cache contents: 0 fonts, 1 dirs
/nix/store/am3y2gs2rj2fd13jvd3j2m9g5646dnw6-dejavu-fonts-minimal-2.37/share/fonts/truetype: caching, new cache contents: 1 fonts, 0 dirs
/nix/store/a4gaj6w4ckwmsbqcjrrn1linm5426bn4-fira-code-6.2/share: skipping, looped directory detected
/nix/store/iy8bpg5czvlvrjy14p6380lbfgilm65g-fira-code-symbols-20160811/share: skipping, looped directory detected
/nix/store/j5nrlwfqj8b020c0ql6yp11kqarnm098-ibm-plex-6.4.0/share: skipping, looped directory detected
/nix/store/wbr1p23lyy0dwr6p30k7jwk6wnq2mfi0-jetbrains-mono-2.304/share: skipping, looped directory detected
/nix/store/rl25ynzjpn1y9m52wb2jzh34f2j0rrin-powerline-fonts-unstable-2018-11-11/share: skipping, looped directory detected
/nix/store/1j4dsg637g4gi3izm16038xg7hpg9aly-material-symbols-4.0.0-unstable-2024-05-17/share: skipping, looped directory detected
/nix/store/423sv9q4sj1gw6h32hz8m3brmhjsm2xh-jost-3.5/share: skipping, looped directory detected
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share: skipping, looped directory detected
/nix/store/f0wlpdjdgfc98q1mq0k9q6bml9b09a7w-noto-fonts-cjk-sans-2.004/share: skipping, looped directory detected
/nix/store/aycxh6s2gc3v48xcjdyf0wfm5cqsw78k-roboto-2.138/share: skipping, looped directory detected
/nix/store/9zv0yb7cr4fxmn5mbx5bdxiik2zqxshf-font-awesome-5.15.4/share: skipping, looped directory detected
/nix/store/i43lkzlgiwqhnryfhisbf6qi2a9qzpa9-font-awesome-4.7.0/share: skipping, looped directory detected
/nix/store/xa6vydqr03151gwvcfq8iaji0kd75nz2-Iosevka-31.5.0/share: skipping, looped directory detected
/nix/store/9qwns7nrbcbrf4j962qaj04gyn2gsc6r-iosevka-comfy-fixed-2.0.0/share: skipping, looped directory detected
/nix/store/ac3cny7i85v3zba06cbcvi73xjkbwrja-nerdfonts-3.2.1/share: skipping, looped directory detected
/nix/store/pczgm78xyd3k095s788x6qsddyqnc25g-fira-4.301/share: skipping, looped directory detected
/nix/store/vhznny9c8ghf9pbnhw6d04m2i3wyyz5j-font-cursor-misc-1.0.4/lib: skipping, looped directory detected
/nix/store/j09nsskywgf4h907mw0rl9zksan27gdr-font-misc-misc-1.1.3/lib: skipping, looped directory detected
/nix/store/27ql12r30p693npbikn0k25ivhhzknd0-dejavu-fonts-2.37/share: skipping, looped directory detected
/nix/store/cffj78m8wy1ps10p3jpwbwrq781g8k4g-freefont-ttf-20120503/share: skipping, looped directory detected
/nix/store/wf7qy0laf8p0rjdwh96baqjqxb8pk2nm-gyre-fonts-2.005/share: skipping, looped directory detected
/nix/store/r17k297af8609szxmmzjbad1hk1lz7xx-liberation-fonts-2.1.5/share: skipping, looped directory detected
/nix/store/1j05rf2vpdabvrgd6rnijqnbs24w51n8-unifont-15.1.05/share: skipping, looped directory detected
/nix/store/2q5985zz2cbv4l5ynnq5dps5fzdkkdl1-noto-fonts-color-emoji-2.042/share: skipping, looped directory detected
/nix/store/am3y2gs2rj2fd13jvd3j2m9g5646dnw6-dejavu-fonts-minimal-2.37/share: skipping, looped directory detected
/nix/store/a4gaj6w4ckwmsbqcjrrn1linm5426bn4-fira-code-6.2/share/fonts: skipping, looped directory detected
/nix/store/iy8bpg5czvlvrjy14p6380lbfgilm65g-fira-code-symbols-20160811/share/fonts: skipping, looped directory detected
/nix/store/j5nrlwfqj8b020c0ql6yp11kqarnm098-ibm-plex-6.4.0/share/fonts: skipping, looped directory detected
/nix/store/wbr1p23lyy0dwr6p30k7jwk6wnq2mfi0-jetbrains-mono-2.304/share/fonts: skipping, looped directory detected
/nix/store/rl25ynzjpn1y9m52wb2jzh34f2j0rrin-powerline-fonts-unstable-2018-11-11/share/consolefonts: skipping, looped directory detected
/nix/store/rl25ynzjpn1y9m52wb2jzh34f2j0rrin-powerline-fonts-unstable-2018-11-11/share/fonts: skipping, looped directory detected
/nix/store/1j4dsg637g4gi3izm16038xg7hpg9aly-material-symbols-4.0.0-unstable-2024-05-17/share/fonts: skipping, looped directory detected
/nix/store/423sv9q4sj1gw6h32hz8m3brmhjsm2xh-jost-3.5/share/fonts: skipping, looped directory detected
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts: skipping, looped directory detected
/nix/store/f0wlpdjdgfc98q1mq0k9q6bml9b09a7w-noto-fonts-cjk-sans-2.004/share/fonts: skipping, looped directory detected
/nix/store/aycxh6s2gc3v48xcjdyf0wfm5cqsw78k-roboto-2.138/share/fonts: skipping, looped directory detected
/nix/store/9zv0yb7cr4fxmn5mbx5bdxiik2zqxshf-font-awesome-5.15.4/share/fonts: skipping, looped directory detected
/nix/store/i43lkzlgiwqhnryfhisbf6qi2a9qzpa9-font-awesome-4.7.0/share/fonts: skipping, looped directory detected
/nix/store/xa6vydqr03151gwvcfq8iaji0kd75nz2-Iosevka-31.5.0/share/fonts: skipping, looped directory detected
/nix/store/9qwns7nrbcbrf4j962qaj04gyn2gsc6r-iosevka-comfy-fixed-2.0.0/share/fonts: skipping, looped directory detected
/nix/store/ac3cny7i85v3zba06cbcvi73xjkbwrja-nerdfonts-3.2.1/share/fonts: skipping, looped directory detected
/nix/store/pczgm78xyd3k095s788x6qsddyqnc25g-fira-4.301/share/fonts: skipping, looped directory detected
/nix/store/vhznny9c8ghf9pbnhw6d04m2i3wyyz5j-font-cursor-misc-1.0.4/lib/X11: skipping, looped directory detected
/nix/store/j09nsskywgf4h907mw0rl9zksan27gdr-font-misc-misc-1.1.3/lib/X11: skipping, looped directory detected
/nix/store/27ql12r30p693npbikn0k25ivhhzknd0-dejavu-fonts-2.37/share/fonts: skipping, looped directory detected
/nix/store/cffj78m8wy1ps10p3jpwbwrq781g8k4g-freefont-ttf-20120503/share/fonts: skipping, looped directory detected
/nix/store/wf7qy0laf8p0rjdwh96baqjqxb8pk2nm-gyre-fonts-2.005/share/fonts: skipping, looped directory detected
/nix/store/r17k297af8609szxmmzjbad1hk1lz7xx-liberation-fonts-2.1.5/share/doc: skipping, looped directory detected
/nix/store/r17k297af8609szxmmzjbad1hk1lz7xx-liberation-fonts-2.1.5/share/fonts: skipping, looped directory detected
/nix/store/1j05rf2vpdabvrgd6rnijqnbs24w51n8-unifont-15.1.05/share/fonts: skipping, looped directory detected
/nix/store/2q5985zz2cbv4l5ynnq5dps5fzdkkdl1-noto-fonts-color-emoji-2.042/share/fonts: skipping, looped directory detected
/nix/store/am3y2gs2rj2fd13jvd3j2m9g5646dnw6-dejavu-fonts-minimal-2.37/share/fonts: skipping, looped directory detected
/nix/store/a4gaj6w4ckwmsbqcjrrn1linm5426bn4-fira-code-6.2/share/fonts/truetype: skipping, looped directory detected
/nix/store/iy8bpg5czvlvrjy14p6380lbfgilm65g-fira-code-symbols-20160811/share/fonts/opentype: skipping, looped directory detected
/nix/store/j5nrlwfqj8b020c0ql6yp11kqarnm098-ibm-plex-6.4.0/share/fonts/opentype: skipping, looped directory detected
/nix/store/wbr1p23lyy0dwr6p30k7jwk6wnq2mfi0-jetbrains-mono-2.304/share/fonts/truetype: skipping, looped directory detected
/nix/store/rl25ynzjpn1y9m52wb2jzh34f2j0rrin-powerline-fonts-unstable-2018-11-11/share/fonts/bdf: skipping, looped directory detected
/nix/store/rl25ynzjpn1y9m52wb2jzh34f2j0rrin-powerline-fonts-unstable-2018-11-11/share/fonts/opentype: skipping, looped directory detected
/nix/store/rl25ynzjpn1y9m52wb2jzh34f2j0rrin-powerline-fonts-unstable-2018-11-11/share/fonts/pcf: skipping, looped directory detected
/nix/store/rl25ynzjpn1y9m52wb2jzh34f2j0rrin-powerline-fonts-unstable-2018-11-11/share/fonts/truetype: skipping, looped directory detected
/nix/store/1j4dsg637g4gi3izm16038xg7hpg9aly-material-symbols-4.0.0-unstable-2024-05-17/share/fonts/TTF: skipping, looped directory detected
/nix/store/1j4dsg637g4gi3izm16038xg7hpg9aly-material-symbols-4.0.0-unstable-2024-05-17/share/fonts/woff2: skipping, looped directory detected
/nix/store/423sv9q4sj1gw6h32hz8m3brmhjsm2xh-jost-3.5/share/fonts/opentype: skipping, looped directory detected
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/truetype: skipping, looped directory detected
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/variable: skipping, looped directory detected
/nix/store/f0wlpdjdgfc98q1mq0k9q6bml9b09a7w-noto-fonts-cjk-sans-2.004/share/fonts/opentype: skipping, looped directory detected
/nix/store/aycxh6s2gc3v48xcjdyf0wfm5cqsw78k-roboto-2.138/share/fonts/truetype: skipping, looped directory detected
/nix/store/9zv0yb7cr4fxmn5mbx5bdxiik2zqxshf-font-awesome-5.15.4/share/fonts/opentype: skipping, looped directory detected
/nix/store/i43lkzlgiwqhnryfhisbf6qi2a9qzpa9-font-awesome-4.7.0/share/fonts/opentype: skipping, looped directory detected
/nix/store/xa6vydqr03151gwvcfq8iaji0kd75nz2-Iosevka-31.5.0/share/fonts/truetype: skipping, looped directory detected
/nix/store/9qwns7nrbcbrf4j962qaj04gyn2gsc6r-iosevka-comfy-fixed-2.0.0/share/fonts/truetype: skipping, looped directory detected
/nix/store/ac3cny7i85v3zba06cbcvi73xjkbwrja-nerdfonts-3.2.1/share/fonts/opentype: skipping, looped directory detected
/nix/store/ac3cny7i85v3zba06cbcvi73xjkbwrja-nerdfonts-3.2.1/share/fonts/truetype: skipping, looped directory detected
/nix/store/pczgm78xyd3k095s788x6qsddyqnc25g-fira-4.301/share/fonts/opentype: skipping, looped directory detected
/nix/store/vhznny9c8ghf9pbnhw6d04m2i3wyyz5j-font-cursor-misc-1.0.4/lib/X11/fonts: skipping, looped directory detected
/nix/store/j09nsskywgf4h907mw0rl9zksan27gdr-font-misc-misc-1.1.3/lib/X11/fonts: skipping, looped directory detected
/nix/store/27ql12r30p693npbikn0k25ivhhzknd0-dejavu-fonts-2.37/share/fonts/truetype: skipping, looped directory detected
/nix/store/cffj78m8wy1ps10p3jpwbwrq781g8k4g-freefont-ttf-20120503/share/fonts/truetype: skipping, looped directory detected
/nix/store/wf7qy0laf8p0rjdwh96baqjqxb8pk2nm-gyre-fonts-2.005/share/fonts/truetype: skipping, looped directory detected
/nix/store/r17k297af8609szxmmzjbad1hk1lz7xx-liberation-fonts-2.1.5/share/doc/liberation-fonts-2.1.5: skipping, looped directory detected
/nix/store/r17k297af8609szxmmzjbad1hk1lz7xx-liberation-fonts-2.1.5/share/fonts/truetype: skipping, looped directory detected
/nix/store/1j05rf2vpdabvrgd6rnijqnbs24w51n8-unifont-15.1.05/share/fonts/opentype: skipping, looped directory detected
/nix/store/2q5985zz2cbv4l5ynnq5dps5fzdkkdl1-noto-fonts-color-emoji-2.042/share/fonts/noto: skipping, looped directory detected
/nix/store/am3y2gs2rj2fd13jvd3j2m9g5646dnw6-dejavu-fonts-minimal-2.37/share/fonts/truetype: skipping, looped directory detected
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/truetype/lexend: skipping, looped directory detected
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/variable/lexend: skipping, looped directory detected
/nix/store/f0wlpdjdgfc98q1mq0k9q6bml9b09a7w-noto-fonts-cjk-sans-2.004/share/fonts/opentype/noto-cjk: skipping, looped directory detected
/nix/store/ac3cny7i85v3zba06cbcvi73xjkbwrja-nerdfonts-3.2.1/share/fonts/opentype/NerdFonts: skipping, looped directory detected
/nix/store/ac3cny7i85v3zba06cbcvi73xjkbwrja-nerdfonts-3.2.1/share/fonts/truetype/NerdFonts: skipping, looped directory detected
/nix/store/vhznny9c8ghf9pbnhw6d04m2i3wyyz5j-font-cursor-misc-1.0.4/lib/X11/fonts/misc: skipping, looped directory detected
/nix/store/j09nsskywgf4h907mw0rl9zksan27gdr-font-misc-misc-1.1.3/lib/X11/fonts/misc: skipping, looped directory detected
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/truetype/lexend/deca: skipping, looped directory detected
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/truetype/lexend/exa: skipping, looped directory detected
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/truetype/lexend/giga: skipping, looped directory detected
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/truetype/lexend/lexend: skipping, looped directory detected
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/truetype/lexend/mega: skipping, looped directory detected
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/truetype/lexend/peta: skipping, looped directory detected
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/truetype/lexend/tera: skipping, looped directory detected
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/truetype/lexend/zetta: skipping, looped directory detected
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/variable/lexend/deca: skipping, looped directory detected
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/variable/lexend/exa: skipping, looped directory detected
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/variable/lexend/giga: skipping, looped directory detected
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/variable/lexend/lexend: skipping, looped directory detected
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/variable/lexend/mega: skipping, looped directory detected
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/variable/lexend/peta: skipping, looped directory detected
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/variable/lexend/tera: skipping, looped directory detected
/nix/store/00fmhyg9rjasgmi7gi69625hk2zzgjlg-lexend-0.pre+date=2022-09-22/share/fonts/variable/lexend/zetta: skipping, looped directory detected
/nix/store/vp3yq7ggwscfyr7yx87jzg7q2bjq9baj-fc-cache: not cleaning unwritable cache directory
/root/.cache/fontconfig: cleaning cache directory
/var/cache/fontconfig: cleaning cache directory
fc-cache: succeeded

It seems to by default have all the dir entries available to it when run as root, but barely any when run as user.

Notify maintainers

I'm not sure if it's an issue with fontconfig directly or something surrounding it, so I'm not sure who to put as a maintainer, please let me know, I'll update the issue.

Metadata

Please run nix-shell -p nix-info --run "nix-info -m" and paste the result.

[user@system:~]$ nix-shell -p nix-info --run "nix-info -m"
 - system: `"x86_64-linux"`
 - host os: `Linux 6.10.7-xanmod1, NixOS, 24.11 (Vicuna), 24.11.20240906.574d1ea`
 - multi-user?: `yes`
 - sandbox: `yes`
 - version: `nix-env (Lix, like Nix) 2.90.0`
 - channels(root): `"nixos-23.05"` (not sure why it shows 23.05, I set my system.stateVersion to 24.05) 
 - nixpkgs: `/nix/store/5w3dp0m37794iffsbm9vd9f1xmmhda6i-source`

Add a :+1: reaction to issues you find important.

tukanoidd commented 4 weeks ago

I just realized nixos-unstable branch hasnt had an update in a while, and im not sure the existing fontconfig fixes were merged there yet, I'm going to try nixos-unstable-small and see if anything changes (based on assumption that those were put there, atleast just by the fact that the last commit there was made a couple of hours ago)

tukanoidd commented 4 weeks ago

nixos-unstable-small works, sorry for not checking that first, closing