Files
pantosite/shell.nix

15 lines
159 B
Nix
Raw Normal View History

2025-09-09 20:57:22 +02:00
{
pkgs ? import <nixpkgs> { },
}:
2024-12-27 22:05:12 +01:00
2025-09-09 20:57:22 +02:00
pkgs.mkShell {
packages = with pkgs; [
nodejs
nodePackages.npm
];
shellHook = ''
echo Welcome!
'';
2024-12-27 22:05:12 +01:00
}