We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d633ca9 commit 576250fCopy full SHA for 576250f
.envrc
@@ -0,0 +1,4 @@
1
+#!/usr/bin/env bash
2
+# the shebang is ignored, but nice for editors
3
+
4
+use flake .
flake.nix
@@ -0,0 +1,21 @@
+{
+ inputs = {
+ nixpkgs.url = "github:NixOS/nixpkgs/698fd43e541a6b8685ed408aaf7a63561018f9f8";
+ utils.url = "github:numtide/flake-utils";
5
+ };
6
7
+ outputs = { self, nixpkgs, utils }:
8
+ utils.lib.eachDefaultSystem (system:
9
+ let
10
+ pkgs = import nixpkgs { inherit system; };
11
+ in
12
+ {
13
+ devShell = with pkgs; mkShell {
14
+ buildInputs = [
15
+ nodejs_22
16
+ nodePackages.prettier
17
+ ];
18
19
+ }
20
+ );
21
+}
0 commit comments