From 515104fd9e3670d93017b58d98f88873df253784 Mon Sep 17 00:00:00 2001 From: Daniel Langbein Date: Wed, 1 Jan 2025 18:00:25 +0000 Subject: [PATCH] shell.nix: fix IntelliJ missing font --- shell.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/shell.nix b/shell.nix index 36f2e31..ae27378 100644 --- a/shell.nix +++ b/shell.nix @@ -40,6 +40,10 @@ in name = "intellij-gradle-jdk23"; targetPkgs = pkgs_: [ 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 gradle ];