8 lines
193 B
Nix
8 lines
193 B
Nix
# install php from nixpkgs because mise wants to compile it from source,
|
|
# and that's a whole can of beans i'm not getting into
|
|
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
php83
|
|
];
|
|
}
|