diff options
| author | Amir Saeid <amir@glgdgt.com> | 2026-06-12 22:23:49 +0100 |
|---|---|---|
| committer | Amir Saeid <amir@glgdgt.com> | 2026-06-12 22:23:49 +0100 |
| commit | c4e676c9b91f86c31e672b830de7ab8ce477895f (patch) | |
| tree | e6560124a476aec4324db494735766538324dbd0 /modules/dev-tools.nix | |
| parent | 01a216a4ac82f785bfcb97000ff815e4016e65f4 (diff) | |
Set LD_LIBRARY_PATH
Diffstat (limited to 'modules/dev-tools.nix')
| -rw-r--r-- | modules/dev-tools.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/dev-tools.nix b/modules/dev-tools.nix index c002fcb..3037167 100644 --- a/modules/dev-tools.nix +++ b/modules/dev-tools.nix @@ -25,6 +25,7 @@ jq knot-dns ripgrep + nix-ld pass sqlitebrowser starship @@ -68,4 +69,14 @@ }; }; }; + + home.sessionVariables = { + LD_LIBRARY_PATH = + with pkgs; + pkgs.lib.makeLibraryPath [ + stdenv.cc.cc.lib + zlib + glib + ]; + }; } |
