WIP
Eval nix flake / evals (push) Successful in 8m5s

This commit is contained in:
2026-01-30 02:04:19 +09:00
parent af0bf7b254
commit 20dd33e169
+14 -1
View File
@@ -1,7 +1,15 @@
{ ... }:
{ config, lib, pkgs, ... }:
let
cfg = config.services.httpd;
in
{
services.httpd = {
enable = true;
adminAddr = "drift@pvv.ntnu.no";
enablePHP = true;
phpPackage = pkgs.php;
# enablePerl = true;
# extraModules = [];
@@ -13,6 +21,11 @@
};
};
networking.firewall.allowedTCPPorts = [
80
443
];
systemd.services.httpd = {
after = [ "pvv-homedirs.target" ];
requires = [ "pvv-homedirs.target" ];