diff options
author | Strahinja Popovic | 2014-07-17 12:51:17 +0200 |
---|---|---|
committer | Michael Raskin | 2014-09-03 15:46:59 +0400 |
commit | fe3f7716f0494fd0170f307e1a8a5e00fa3e6d2f (patch) | |
tree | 6ad4b660c5ae06ed987a89fe4a7f88fd2488edf5 /nixos/tests/phabricator.nix | |
parent | dae0d770fccb66a996ac73a572bceab5dd840011 (diff) |
Enabled access to binaries of needed tools, and worker daemons can be enabled for phabricator #3306
Diffstat (limited to 'nixos/tests/phabricator.nix')
-rw-r--r-- | nixos/tests/phabricator.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/nixos/tests/phabricator.nix b/nixos/tests/phabricator.nix index 53038474c91a..0fe31f66502d 100644 --- a/nixos/tests/phabricator.nix +++ b/nixos/tests/phabricator.nix @@ -32,9 +32,16 @@ import ./make-test.nix ({ pkgs, ... }: { }]; }; + phd = { + enable = true; + }; + mysql = { enable = true; package = pkgs.mysql; + extraOptions = '' + sql_mode=STRICT_ALL_TABLES + ''; }; }; |