Skip to content

Instantly share code, notes, and snippets.

@lucperkins
Created October 7, 2022 16:50
Show Gist options
  • Save lucperkins/a1255210c9dfe1a60dd5fd58c6e1b763 to your computer and use it in GitHub Desktop.
Save lucperkins/a1255210c9dfe1a60dd5fd58c6e1b763 to your computer and use it in GitHub Desktop.
{
description = "Dev env with prettier";
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [ nodePackages.prettier ];
};
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment