Skip to content

Instantly share code, notes, and snippets.

@visionarylab
Created November 22, 2024 03:54
Show Gist options
  • Save visionarylab/f1efbd9a5bf1f938d3fca9a3f2d45d55 to your computer and use it in GitHub Desktop.
Save visionarylab/f1efbd9a5bf1f938d3fca9a3f2d45d55 to your computer and use it in GitHub Desktop.
my nix cheatsheet
{pkgs}: {
channel = "stable-24.05";
packages = [
pkgs.nodejs_20
pkgs.yarn
pkgs.nodePackages.pnpm
pkgs.bun
];
env = { HELLO="worl"; };
idx.extensions = [
];
idx.previews = {
previews = {
web = {
command = [
"npm"
"run"
"dev"
"--"
"--port"
"$PORT"
"--hostname"
"0.0.0.0"
];
manager = "web";
};
};
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment