Initial commit

This commit is contained in:
2026-06-05 23:40:26 +02:00
commit ebf977cf48
11 changed files with 3131 additions and 0 deletions

20
devenv.nix Normal file
View File

@@ -0,0 +1,20 @@
{
pkgs,
lib,
config,
...
}:
{
packages = [
pkgs.liteparse
];
languages = {
php = {
enable = true;
packages = {
composer = pkgs.phpPackages.composer;
};
};
};
}