shell.nix: fix IntelliJ missing font

This commit is contained in:
Daniel Langbein 2025-01-01 18:00:25 +00:00
parent cd34a1cb82
commit 515104fd9e
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002

View File

@ -40,6 +40,10 @@ in
name = "intellij-gradle-jdk23"; name = "intellij-gradle-jdk23";
targetPkgs = pkgs_: [ targetPkgs = pkgs_: [
pkgs_.jetbrains.idea-ultimate pkgs_.jetbrains.idea-ultimate
# IntelliJ needs at least one font installed.
# If this shell.nix is run on a non-NixOS system, that might not be the case.
# Thus, we manually add one font.
pkgs_.noto-fonts
jdk jdk
gradle gradle
]; ];