1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-18 14:28:15 +00:00

debug: make NIX_DEBUG_INFO_DIRS a list of strings (#6595)

Fixup of daab32302b.
This commit is contained in:
Brian Leung 2025-03-09 10:20:08 -07:00 committed by GitHub
parent cf47e7ea21
commit 2967de4d11
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -17,8 +17,7 @@
home.extraOutputsToInstall = [ "debug" ]; home.extraOutputsToInstall = [ "debug" ];
home.sessionSearchVariables = { home.sessionSearchVariables = {
NIX_DEBUG_INFO_DIRS = NIX_DEBUG_INFO_DIRS = [ "${config.home.profileDirectory}/lib/debug" ];
"$NIX_DEBUG_INFO_DIRS\${NIX_DEBUG_INFO_DIRS:+:}${config.home.profileDirectory}/lib/debug";
}; };
}; };
} }