nix-gscheits/shell.nix
2021-07-18 13:55:11 +02:00

11 lines
272 B
Nix

{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
name = "fablab-nixUnstable-shell";
nativeBuildInputs = with pkgs; [
(pkgs.writeShellScriptBin "nix" ''
exec -a nix ${pkgs.nixUnstable}/bin/nix --experimental-features "nix-command flakes" "$@"
'')
];
}