Skip to content
Snippets Groups Projects
flake.nix 366 B
Newer Older
Elliott Shugerman's avatar
Elliott Shugerman committed
{
  inputs = { flake-utils.url = "github:numtide/flake-utils"; };

  outputs = { self, nixpkgs, flake-utils }:
    flake-utils.lib.eachDefaultSystem (system:
      let pkgs = nixpkgs.legacyPackages.${system};
      in {
        devShell = pkgs.mkShell {
          buildInputs = with pkgs; [
            nushell
            docker
Elliott Shugerman's avatar
Elliott Shugerman committed
          ];
        };
      });
}