prosody: fix work after update luadbi packages

This commit is contained in:
Izorkin
2019-08-20 10:24:49 +03:00
parent bb4816d41c
commit 89c69bfb79
2 changed files with 9 additions and 0 deletions
+8
View File
@@ -8,6 +8,14 @@ import ../make-test.nix {
];
};
server = { config, pkgs, ... }: {
nixpkgs.overlays = [
(self: super: {
prosody = super.prosody.override {
withDBI = true;
withExtraLibs = [ pkgs.luaPackages.luadbi-mysql ];
};
})
];
networking.extraHosts = ''
${config.networking.primaryIPAddress} example.com
'';