2
0

Init SvelteKit Project

Signed-off-by: Asai Neko <sugar@sne.moe>
This commit is contained in:
翼ねこ
2026-01-23 10:29:05 +08:00
committed by Asai Neko
commit 099524af26
37 changed files with 3320 additions and 0 deletions

18
devenv.nix Normal file
View File

@@ -0,0 +1,18 @@
{ pkgs, ... }:
{
packages = with pkgs; [
git
just
];
dotenv = {
enable = true;
filename = [
".env"
];
};
languages = {
javascript.enable = true;
javascript.corepack.enable = true;
};
}