svelte project init

This commit is contained in:
2026-01-28 10:24:11 +00:00
commit c6453c61a2
19 changed files with 1212 additions and 0 deletions

19
flake.nix Normal file
View File

@@ -0,0 +1,19 @@
{
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
];
shellHook = ''
echo "mreow"
'';
};
};
}