nixpkgs/systems/hikari/web-development/domains/daniel-siepmann.localhost.nix
Daniel Siepmann b2e3f46643
Extract web dev into own functions for better maintenance
Use a function for static files and TYPO3 that can be called.
That way I separate the actual domains for development from the
definition.
2023-02-07 13:53:54 +01:00

11 lines
267 B
Nix

{ pkgs, lib, config, ... }:
import ./../lib/create-typo3.nix {
inherit config lib pkgs;
domain = "daniel-siepmann.localhost";
relativeDocumentRoot = "own/daniel-siepmann.de/project/public/";
databaseName = "own_danielsiepmann";
phpPackage = pkgs.php82;
}