hosts: homes: mousqueton: update 'LD_PRELOAD'
All checks were successful
ci/woodpecker/push/check Pipeline was successful

I was getting dynamic linker errors with the previous value.
This commit is contained in:
Bruno BELANYI 2023-11-17 16:25:44 +00:00
parent 11c8d4623c
commit 00ee4629fc

View file

@ -6,11 +6,11 @@
# Some tooling (e.g: SSH) need to use this library # Some tooling (e.g: SSH) need to use this library
home.sessionVariables = { home.sessionVariables = {
LD_PRELOAD = "/lib/x86_64-linux-gnu/libnss_cache.so.2\${LD_PRELOAD:+:}$LD_PRELOAD"; LD_PRELOAD = "/usr/grte/v5/lib64/libnss_cache.so.2\${LD_PRELOAD:+:}$LD_PRELOAD";
}; };
systemd.user.sessionVariables = { systemd.user.sessionVariables = {
LD_PRELOAD = "/lib/x86_64-linux-gnu/libnss_cache.so.2\${LD_PRELOAD:+:}$LD_PRELOAD"; LD_PRELOAD = "/usr/grte/v5/lib64/libnss_cache.so.2\${LD_PRELOAD:+:}$LD_PRELOAD";
}; };
programs.git.package = lib.mkForce pkgs.emptyDirectory; programs.git.package = lib.mkForce pkgs.emptyDirectory;