hosts: add nixpkgs to NIX_PATH

This commit is contained in:
Timothy DeHerrera 2021-02-01 09:56:33 -07:00
parent acde966df4
commit fc082b5b0d
No known key found for this signature in database
GPG key ID: 8985725DB5B0C122

View file

@ -43,11 +43,11 @@ let
hardware.enableRedistributableFirmware = lib.mkDefault true;
networking.hostName = hostName;
nix.nixPath = let path = toString ../.; in
[
"nixos-unstable=${master}"
"nixos=${nixos}"
];
nix.nixPath = [
"nixos-unstable=${master}"
"nixos=${nixos}"
"nixpkgs=${nixos}"
];
nixpkgs = { inherit pkgs; };