a bunch of php setup
This commit is contained in:
parent
156d545da7
commit
0bf8bf7f7a
3 changed files with 10 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{ pkgs, ... }: {
|
||||
imports = [
|
||||
./mise.nix
|
||||
./php.nix
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
|
@ -9,5 +10,6 @@
|
|||
gnumake
|
||||
unzip
|
||||
openssl
|
||||
autoconf
|
||||
];
|
||||
}
|
||||
|
|
7
home/common/universal/php.nix
Normal file
7
home/common/universal/php.nix
Normal 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
|
||||
];
|
||||
}
|
Loading…
Add table
Reference in a new issue