feat: enable nix-ld with libicu

This commit is contained in:
Youwen Wu 2024-07-15 15:36:17 -07:00
parent 08b9fa545f
commit 621ee1f8fb
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3

View file

@ -59,6 +59,11 @@
# You can disable this if you're only using the Wayland session. # You can disable this if you're only using the Wayland session.
services.xserver.enable = false; services.xserver.enable = false;
programs.nix-ld = {
enable = true;
libraries = [ pkgs.icu ];
};
programs.hyprland = { programs.hyprland = {
enable = true; enable = true;
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland; package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;