Skip to content

Commit aaf9c53

Browse files
committed
chore: add flake
1 parent 730a826 commit aaf9c53

File tree

4 files changed

+870
-1181
lines changed

4 files changed

+870
-1181
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,6 @@ dist/
66
test/testFixture/.vscode
77
*.vsix
88
.DS_Store
9-
test-resources
9+
test-resources
10+
.envrc
11+
.direnv

flake.lock

+42
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
description = "vscode-yaml-dev-shell";
3+
inputs.nixpkgs.url = "github:NixOS/nixpkgs";
4+
inputs.flake-utils.url = "github:numtide/flake-utils";
5+
6+
outputs = { self, nixpkgs, flake-utils }:
7+
flake-utils.lib.eachSystem
8+
[
9+
"x86_64-darwin"
10+
"aarch64-darwin"
11+
"x86_64-linux"
12+
"aarch64-linux"
13+
]
14+
(system:
15+
16+
let
17+
pkgs = nixpkgs.legacyPackages.${system};
18+
in
19+
{
20+
devShells.default = pkgs.mkShell
21+
{
22+
packages = with pkgs;
23+
[
24+
nodejs-16_x
25+
yarn
26+
];
27+
};
28+
});
29+
}

0 commit comments

Comments
 (0)