let nixos = import { config = { allowUnfree = true; }; }; nixos-unstable = import { config = { allowUnfree = true; }; }; mach-nix = import (builtins.fetchGit { url = "https://github.com/DavHau/mach-nix"; }) { python = "python310"; }; in mach-nix.nixpkgs.mkShell { buildInputs = [ nixos-unstable.elixir ]; shellHook = '' code ''; }