nixos/pkgsets/php.nix

9 lines
233 B
Nix
Raw Normal View History

{ config, lib, fn, pkgs, ... }:
2023-06-16 23:59:53 +02:00
{
2023-06-16 23:59:53 +02:00
config.machine.pkgsets.php.pkgwrap = (fn.pkgFilter config.machine.pkgsets.php.pkgs);
config.machine.pkgsets.php.pkgs = (with pkgs.php82Packages; [
composer
]) ++ (with pkgs; [ php82 ]);
}