Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 412 Bytes

replit.md

File metadata and controls

15 lines (12 loc) · 412 Bytes

replit

replit.nix

Trying to get the unstable neovim, I found this

let
  unstable = import (fetchTarball https://nixos.org/channels/nixos-unstable/nixexprs.tar.xz) { };
in
{ nixpkgs ? import <nixpkgs> {} }:
with nixpkgs; mkShell {
  buildInputs = [ hello unstable.neovim nixfmt ];
}