lab/nix/flakes/import-tree/modules/dev-shell.nix

17 lines
243 B
Nix
Raw Normal View History

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