picturarium/shell.nix

7 lines
89 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
packages = [
pkgs.nodejs_22
];
}