oizys/modules/environment.nix

21 lines
462 B
Nix
Raw Normal View History

2022-11-21 15:12:09 -06:00
{ lib, config, pkgs, ... }:
{
# for compatibility add zsh to list of /etc/shells
environment.shells = with pkgs; [ zsh ];
environment.etc = {
2023-01-17 12:32:42 -06:00
issue.source = ../etc/issue;
2022-11-21 15:12:09 -06:00
};
2023-01-24 12:09:22 -06:00
# # environment.variables = {
# # NIX_LD_LIBRARY_PATH = with pkgs; lib.makeLibraryPath [
# # stdenv.cc.cc
# # openssl
# #
# # zlib # for delta
# # ];
# # NIX_LD = lib.fileContents "${pkgs.stdenv.cc}/nix-support/dynamic-linker";
# # };
2022-11-21 15:12:09 -06:00
}