Files
dash/shell.nix
Martin Pander 8addda35ea V2
2023-12-09 19:34:45 +01:00

11 lines
214 B
Nix

let
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-22.11";
pkgs = import nixpkgs { config = {}; overlays = []; };
in
pkgs.mkShell {
packages = with pkgs; [
nodejs
];
}