feat: added default devshell for yumeami development

This commit is contained in:
Ceferino Patino 2025-09-14 11:16:33 -05:00
commit d94be55a1e
Signed by: c4patino
SSH key fingerprint: SHA256:9fQ9TsujGrdNNi76mnsu63v7dS5JOmHRZEqBOl49OR8
2 changed files with 19 additions and 0 deletions

View file

@ -56,5 +56,9 @@
title = "yumeami";
};
};
alias = {
shells.default = "yumeami";
};
};
}

View file

@ -0,0 +1,15 @@
{
pkgs,
mkShell,
}:
mkShell {
buildInputs = with pkgs; [
lua
];
packages = with pkgs; [
alejandra
nix-prefetch-scripts
stylua
];
}