4 Dec 2022 |
| @schnecfk:ruhr-uni-bochum.de changed their display name from CRTified to CRTified (old handle). | 14:19:08 |
| CRTified joined the room. | 14:23:27 |
5 Dec 2022 |
| luxus joined the room. | 18:31:26 |
6 Dec 2022 |
| @schnecfk:ruhr-uni-bochum.de changed their profile picture. | 14:11:28 |
7 Dec 2022 |
luxus | does anyone use https://gitlab.com/coffeetables/nix-matrix-appservices or something similar? i search for a working example | 16:43:38 |
10 Dec 2022 |
| danio (PVV) changed their display name from Daniel to danio (PVV). | 05:02:16 |
13 Dec 2022 |
philipp | I think the default of services.matrix-appservice-discord.settings is really unfortunate: The database.filename is set to the assumed default value but that makes using database connections a pain because those aren't used if the former is set. | 18:28:36 |
| Jez (he/him) 🌦️ left the room. | 19:22:27 |
14 Dec 2022 |
| Alesya Huzik joined the room. | 11:16:32 |
Winter (she/her) | In reply to @philipp:xndr.de I think the default of services.matrix-appservice-discord.settings is really unfortunate: The database.filename is set to the assumed default value but that makes using database connections a pain because those aren't used if the former is set. cc Notkea | 20:00:45 |
@pacien:pacien.net | In reply to @philipp:xndr.de I think the default of services.matrix-appservice-discord.settings is really unfortunate: The database.filename is set to the assumed default value but that makes using database connections a pain because those aren't used if the former is set. what would you suggest instead? | 20:04:21 |
philipp | I think not setting it would be fine. Wanted to test that though and this was half a note to myself. | 20:06:23 |
@pacien:pacien.net | or perhaps setting the default differently (avoiding recursiveUpdate in the module). Could set database = mkDefault { filename = "..."; } so that setting database:connString would also remove filename . But I'm not sure whether mkDefault would actually allow doing that kind of thing. | 20:20:34 |
19 Dec 2022 |
Sumner Evans | Is there a way to override matrix-react-sdk given the way that we currently build Element? | 16:54:29 |
Dandellion | no, because the unwrapped was put inside the let block | 16:55:43 |
Dandellion | https://github.com/NixOS/nixpkgs/pull/200336 | 16:56:31 |
Dandellion | and we are as per usual terrible at merging things in this team >.< | 16:57:49 |
Sumner Evans | I saw that PR, and I just didn't feel like I understood what it was doing well enough to approve it. | 16:58:42 |
Dandellion | The idea is to let you do
pkgs.element-web.override {element-web-unwrapped = element-web-unwrapped.overrideAttrs ... }
| 17:04:51 |
Dandellion | * The idea is to let you do
pkgs.element-web.override {element-web-unwrapped = pkgs.element-web-unwrapped.overrideAttrs ... }
| 17:05:05 |
Dandellion | but since ele-unwrapped is its own drv, not have to build it just because you're pkgs.element-web.override {conf = ...} | 17:06:02 |
Dandellion | * but since ele-unwrapped is its own drv, not have to build the whole element-web just because you're pkgs.element-web.override {conf = ...} | 17:06:20 |