Auto-commit: 2026-01-05 18:24:50

This commit is contained in:
2026-01-05 18:24:50 +00:00
parent f3791ad3a2
commit 568e16e1b8

View File

@@ -1,7 +1,11 @@
{ pkgs, ... }:
{ pkgs, config, lib, ... }:
let
cfg = config.my;
in
{
programs.nix-ld.enable = true;
programs.nix-ld.libraries = with pkgs; [
programs.nix-ld = lib.mkIf (cfg.rgb.enable || cfg.openlinkhub.enable ) {
enable = true;
libraries = with pkgs; [
stdenv.cc.cc
glibc
xorg.libX11
@@ -32,4 +36,5 @@
libxcb.out
libxkbcommon.out
];
};
}