Files
doloro-site-v6/flake.nix
2026-01-28 23:48:00 +00:00

21 lines
388 B
Nix

{
description = "Flake description";
outputs =
{ self, nixpkgs }:
{
# setup the devShell for x86_64-linux.
devShell.x86_64-linux =
with nixpkgs.legacyPackages.x86_64-linux;
mkShell {
buildInputs = [
pnpm
nodejs
];
shellHook = ''
echo "mreow"
'';
};
};
}