Use import-tree to import modules from a directory

This commit is contained in:
Oliver Davies 2025-08-07 09:18:42 +01:00
parent 640262f87f
commit b0cd4852fd
5 changed files with 138 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{ inputs, ... }:
{
imports = [ inputs.devshell.flakeModule ];
perSystem =
{ pkgs, ... }:
{
devshells.default.packages = with pkgs; [
go
php
phpPackages.composer
tailwindcss
];
};
}