-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
flake.nix
28 lines (25 loc) · 782 Bytes
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
description = "popchor-koeln";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.11";
inputs.unstable.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
outputs = { self, nixpkgs, unstable }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
pkgsUnstable = unstable.legacyPackages.${system};
in
{
devShells.${system}.default = pkgs.mkShell {
buildInputs = [
pkgs.jq
pkgs.netlify-cli
pkgs.nodejs_latest
pkgs.ripgrep
pkgsUnstable.nodePackages_latest.pnpm
];
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD = "true";
PLAYWRIGHT_BROWSERS_PATH = pkgs.playwright.browsers;
PLAYWRIGHT_BROWSERS_VERSION = pkgs.playwright.version;
};
};
}