Added devenv and tooling for quicker debugging

This commit is contained in:
2025-12-22 14:39:43 +00:00
parent f2c066c3df
commit 48e9b59d4a
8 changed files with 176 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{
pkgs,
lib,
config,
inputs,
...
}: {
packages = [
pkgs.git
pkgs.selene
pkgs.stylua
];
languages.lua.enable = true;
git-hooks.hooks = {
selene.enable = true;
stylua.enable = true;
};
}