rules-as-code-2025/default.nix
2025-03-13 12:18:02 +01:00

7 lines
106 B
Nix

{ pkgs ? import <nixos-unstable> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
nodejs
];
}