Setup php7.2 dev tools
This commit is contained in:
@@ -6,6 +6,7 @@
|
||||
self.nixosModules.zerotier
|
||||
./backup.nix
|
||||
./dev.nix
|
||||
./phpdev.nix
|
||||
./printing.nix
|
||||
];
|
||||
|
||||
|
23
hosts/marauder/phpdev.nix
Executable file
23
hosts/marauder/phpdev.nix
Executable file
@@ -0,0 +1,23 @@
|
||||
{ pkgs, inputs, ... }:
|
||||
{
|
||||
services.mysql = {
|
||||
enable = true;
|
||||
package = pkgs.mariadb;
|
||||
};
|
||||
|
||||
services.httpd = {
|
||||
enable = true;
|
||||
adminAddr = "admin@localhost";
|
||||
enablePHP = true;
|
||||
virtualHosts = {
|
||||
"localhost" = {
|
||||
documentRoot = "/var/www/localhost";
|
||||
locations."/".index = "index.html index.php";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
environment.systemPackages = [
|
||||
inputs.phps.packages.x86_64-linux.php72
|
||||
];
|
||||
}
|
Reference in New Issue
Block a user