This commit is contained in:
Daylin Morgan 2023-05-03 12:33:02 -05:00
parent 81afc219d4
commit 3a4ebdcd11
Signed by: daylin
GPG key ID: C1E52E7DD81DF79F
4 changed files with 17 additions and 15 deletions

View file

@ -2,16 +2,16 @@
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1682530770,
"narHash": "sha256-xKO2KuibPW/p6HdBLpG7Cg5UF3l/WX2e9LbwVpsZzN0=",
"lastModified": 1682453498,
"narHash": "sha256-WoWiAd7KZt5Eh6n+qojcivaVpnXKqBsVgpixpV2L9CE=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "ddff8bd1184a180ebe30d4dec51e083c1811816c",
"rev": "c8018361fa1d1650ee8d4b96294783cf564e8a7f",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "master",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}

View file

@ -2,7 +2,7 @@
description = "An example NixOS configuration";
inputs = {
nixpkgs = { url = "github:nixos/nixpkgs/master"; };
nixpkgs = { url = "github:nixos/nixpkgs/nixos-unstable"; };
};

View file

@ -78,6 +78,8 @@
lazydocker
python3
micromamba
nodejs
go
rustup

View file

@ -8,14 +8,14 @@
issue.source = ../etc/issue;
};
environment.variables = {
# NIX_LD_LIBRARY_PATH = with pkgs; lib.makeLibraryPath [
# stdenv.cc.cc
# openssl
#
# zlib # for delta
# ];
# this setting means needing to build --impure
NIX_LD = lib.fileContents "${pkgs.stdenv.cc}/nix-support/dynamic-linker";
};
# environment.variables = {
# # NIX_LD_LIBRARY_PATH = with pkgs; lib.makeLibraryPath [
# # stdenv.cc.cc
# # openssl
# #
# # zlib # for delta
# # ];
# # this setting means needing to build --impure
# NIX_LD = lib.fileContents "${pkgs.stdenv.cc}/nix-support/dynamic-linker";
# };
}