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": { "nodes": {
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1682530770, "lastModified": 1682453498,
"narHash": "sha256-xKO2KuibPW/p6HdBLpG7Cg5UF3l/WX2e9LbwVpsZzN0=", "narHash": "sha256-WoWiAd7KZt5Eh6n+qojcivaVpnXKqBsVgpixpV2L9CE=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "ddff8bd1184a180ebe30d4dec51e083c1811816c", "rev": "c8018361fa1d1650ee8d4b96294783cf564e8a7f",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nixos", "owner": "nixos",
"ref": "master", "ref": "nixos-unstable",
"repo": "nixpkgs", "repo": "nixpkgs",
"type": "github" "type": "github"
} }

View file

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

View file

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

View file

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