a bunch of php setup

This commit is contained in:
insects 2024-08-16 01:28:50 +02:00
parent 156d545da7
commit 0bf8bf7f7a
3 changed files with 10 additions and 0 deletions

View file

@ -23,6 +23,7 @@
setpath ~/.cabal/bin
setpath ~/.local/bin
setpath ~/.bun/bin
setpath ~/Projects/Checkouts/arcanist/bin
set -x EDITOR nvim
set -x USER lu

View file

@ -1,6 +1,7 @@
{ pkgs, ... }: {
imports = [
./mise.nix
./php.nix
];
home.packages = with pkgs; [
@ -9,5 +10,6 @@
gnumake
unzip
openssl
autoconf
];
}

View file

@ -0,0 +1,7 @@
# 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
];
}