diff options
| author | Grigory Shipunov | 2023-07-23 22:56:25 +0200 |
|---|---|---|
| committer | Grigory Shipunov | 2023-07-23 22:56:25 +0200 |
| commit | 5b47cc39c1d94d52a791e681fa3152754b9818cd (patch) | |
| tree | dd02d81bf10356377ceb1e6f0adee7474859122a /modules/basic-tools | |
| parent | 8ab21edb0d9c70322dd99ca5a60ad26c64a3d812 (diff) | |
retire toaster, refactor a bit
Diffstat (limited to 'modules/basic-tools')
| -rw-r--r-- | modules/basic-tools/default.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/basic-tools/default.nix b/modules/basic-tools/default.nix index 19b319c..4fd52ea 100644 --- a/modules/basic-tools/default.nix +++ b/modules/basic-tools/default.nix @@ -97,6 +97,15 @@ ''; }; + programs.nix-ld.enable = true; + environment.variables = { + NIX_LD_LIBRARY_PATH = lib.makeLibraryPath [ + pkgs.stdenv.cc.cc + ]; + NIX_LD = lib.fileContents "${pkgs.stdenv.cc}/nix-support/dynamic-linker"; + }; + + programs.iftop.enable = true; programs.mosh.enable = true; |
