13 Sep 2021 |
Andreas Rammhold | I've updated the Element Web version on chat.nixos.dev to that latest one (with the fix for the recently published security issue). | 15:14:54 |
14 Sep 2021 |
nixinator | super | 01:08:52 |
17 Sep 2021 |
| disasm joined the room. | 17:20:21 |
| disasm changed their display name from Samuel Leathers to disasm. | 17:26:06 |
disasm | thanks Andreas Rammhold for hosting this. I'm curious what cleints people are using to connect to chat.nixos.dev or if everyone uses the web interface? I was looking for a command-line client like weechat integration, but haven't found any good examples of altering my NixOS config to make that work. | 17:33:27 |
disasm | * thanks Andreas Rammhold for hosting this. I'm curious what clients people are using to connect to chat.nixos.dev or if everyone uses the web interface? I was looking for a command-line client like weechat integration, but haven't found any good examples of altering my NixOS config to make that work. | 17:33:38 |
Andreas Rammhold | Welcome :) | 18:02:56 |
18 Sep 2021 |
yusdacra | In reply to @disassembler:nixos.dev thanks Andreas Rammhold for hosting this. I'm curious what clients people are using to connect to chat.nixos.dev or if everyone uses the web interface? I was looking for a command-line client like weechat integration, but haven't found any good examples of altering my NixOS config to make that work. I use Element for now, but I will switch to https://cinny.in/ once it gains support for alternative auth methods | 18:41:24 |
22 Sep 2021 |
| zrsk joined the room. | 15:45:55 |
| zrsk changed their display name from Andrea Ciceri to zrsk. | 15:51:10 |
| zrsk set a profile picture. | 15:52:04 |
25 Sep 2021 |
andi- | Everyone doing good? Any issues? | 00:11:29 |
Mic92 | Every once in a while my weechat-matrix needs to reconnect itself. But at the time I am not sure I can blame this on the server. | 05:57:44 |
26 Sep 2021 |
lassulus | I have the same issue, but it's not really an issue for me. weechat-matrix sadly is not a great client anyway | 16:48:14 |
andi- | I've had that issue for a while and I am pretty sure I mentioned it here .. not sure why that is happening. :'( | 20:21:25 |
nixinator | all good..... thanks for your efforts! | 20:35:45 |
nixinator | i will send you a flake soon. | 20:35:55 |
andi- | Keep your flakes :p | 20:50:52 |
27 Sep 2021 |
nixinator | it's going to have to be jelly beans then | 07:37:25 |
Mic92 | flakes for what? | 11:40:40 |
andi- |  Download Screenshot 2021-09-27 at 15.47.05.png | 13:47:26 |
andi- | Chat volume in nixos channels that are linked to the space | 13:47:34 |
| [0x4A6F] joined the room. | 18:51:54 |
| yusdacra changed their profile picture. | 19:50:58 |
5 Oct 2021 |
| @lourkeur:nixos.dev joined the room. | 08:54:28 |
7 Oct 2021 |
| phryneas joined the room. | 16:39:33 |
10 Oct 2021 |
| 0x4A6F joined the room. | 10:18:34 |
12 Oct 2021 |
evils | lol, element-desktop on sway (wayland) if firefox isn't open already, it can open github there to authorize it, but that ends in a return link to element at the end, which then fails to get to the desktop app
(that firefox then cannot be used to open links from other wayland apps) | 10:22:00 |
evils | * lol, element-desktop on sway (wayland) if firefox isn't open already, it can open github there to authorize it, but that ends in a return link to element at the end, which then fails to get to the desktop app
(that firefox then cannot be used to open links from wayland apps) | 11:00:14 |
andi- | > cat electron.nix
# make sure all the electron apps that I am using are using wayland by default
{
nixpkgs.overlays = [
(self: super: {
electronForceWayland = drv: binaryName: drv.overrideAttrs ({ postFixup ? "", nativeBuildInputs ? [ ], ... }: {
nativeBuildInputs = nativeBuildInputs ++ [ self.makeWrapper ];
postFixup = postFixup + ''
wrapProgram $out/bin/${binaryName} \
--add-flags "--enable-features=UseOzonePlatform" \
--add-flags "--ozone-platform=wayland"
'';
});
element-desktop = self.electronForceWayland super.element-desktop "element-desktop";
# signal doesn't even open :(
#signal-desktop = self.electronForceWayland super.signal-desktop "signal-desktop";
})
];
}
| 11:39:34 |