From 621ee1f8fbdf1515f179bc6a6c15c9fd3f4e1821 Mon Sep 17 00:00:00 2001 From: Youwen Wu Date: Mon, 15 Jul 2024 15:36:17 -0700 Subject: [PATCH] feat: enable nix-ld with libicu --- configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configuration.nix b/configuration.nix index 928f280..4eee9ff 100755 --- a/configuration.nix +++ b/configuration.nix @@ -59,6 +59,11 @@ # You can disable this if you're only using the Wayland session. services.xserver.enable = false; + programs.nix-ld = { + enable = true; + libraries = [ pkgs.icu ]; + }; + programs.hyprland = { enable = true; package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;