flake: use fast python for synapse in poseidon overlay

This commit is contained in:
Antoine Martin 2021-07-14 01:05:21 +02:00
parent 829632e360
commit 29a98d0c0d

View file

@ -59,6 +59,17 @@
inherit system;
config.allowUnfree = true;
};
fastPython3 = self.python3.override {
enableOptimizations = true;
reproducibleBuild = false;
self = self.fastPython3;
pythonAttr = "fastPython3";
};
matrix-synapse = super.matrix-synapse.override {
python3 = self.fastPython3;
};
})
];
}