home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 2be1317acbac813c0807be3199b06d9991eba089
parent b659432ac8e5c7b187c38a77f85ff0b2b38b6f6e
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Sat,  6 Jun 2020 17:04:05 +0200

shell.nix: update NIX_PATH to add…

… nixos and nixos-unstable (just in case)

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Mshell.nix | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/shell.nix b/shell.nix @@ -1,6 +1,8 @@ let sources = import ./nix; pkgs = sources.nixpkgs { }; + nixos-unstable = sources.pkgs-unstable { }; + nixos = sources.pkgs { }; in pkgs.mkShell { name = "nix-config"; @@ -11,6 +13,6 @@ pkgs.mkShell { nixpkgs-fmt ]; shellHook = '' - export NIX_PATH="nixpkgs=${pkgs.path}" + export NIX_PATH="nixpkgs=${pkgs.path}:nixos=${nixos.path}:nixos-unstable=${nixos-unstable.path}" ''; }