11 lines
272 B
Nix
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" "$@"
|
|
'')
|
|
];
|
|
}
|