| 20 Mar 2025 |
Andrew | Does qt.platformTheme.name = "gnome"; suppose to work magically by itself? I wanna run opensnitch-ui with "System" theme, but it's bright af. it uses qt, but I'm on gnome. It doesn't even care about QT_STYLE_OVERRIDE=kvantum. | 20:37:26 |
Andrew | It looks like it's outdated, but there are some other options, but I don't know what any of them are, and how would I apply them for NixOS. | 20:38:33 |
| 24 Mar 2025 |
| sachesi x changed their display name from sachesi to sachesi x. | 07:48:27 |
| 25 Mar 2025 |
| @freedbeats:the-lamp.net joined the room. | 15:25:36 |
| QuadRadical (Ping / Reply) joined the room. | 19:59:54 |
QuadRadical (Ping / Reply) | Hi! Is there any special setup needed for CalDAV in gnome calendar? | 20:01:21 |
QuadRadical (Ping / Reply) | I added it as an online account, but it the calendars don't show up. They do on GNOME Calendar on postmarketOS though. | 20:01:31 |
| strutztm joined the room. | 21:03:09 |
| 28 Mar 2025 |
bendlas | I just spent way too much time to find out that services.xserver.displayManager.startx.enable = true; prevents gnome sessions from starting. GDM runs normally, but when logging in, throws you right back onto the login screen. I'll try to investigate more, but is anybody else seeing this? | 18:46:11 |
bendlas | * I just spent way too much time to find out that services.xserver.displayManager.startx.enable = true; prevents gnome sessions from starting. GDM runs normally, but when logging in, throws you right back onto the login screen. This had worked until ~2 weeks ago. I'll try to investigate more, but is anybody else seeing this? | 18:46:45 |
| kevincox left the room. | 20:12:34 |
bendlas | Found it .. ugh https://github.com/NixOS/nixpkgs/pull/388789/files#diff-85a3cd082c968258dd17c4b21073c62e8e195b3ae49bd79e7a89af0694b316c8R105-R111 | 20:31:04 |
| 29 Mar 2025 |
K900 | Question: why do we have multiple builds of the same version of webkitgtk? | 05:50:38 |
K900 | I'm building 2.48.0+abi=4.0 and 2.48.0+abi=4.1 | 05:50:51 |
K900 | And it's all used by source built packages | 05:51:15 |
K900 | So why do we have two ABI versions and how do packages decide which one to use? | 05:51:30 |
ghpzin | It is because of libsoup2 -> libsoup3 migration that a lot of things never did. https://github.com/NixOS/nixpkgs/blob/10968e9b9f237004f3b27f45581cbb3e481bc270/pkgs/development/libraries/webkitgtk/default.nix#L84-L89 From: https://github.com/NixOS/nixpkgs/pull/182618
- libsoup3 migration
...
Processes can only link against one version of the library (even transitively), or there will be symbol clashes!
Aliases now:
webkitgtk_4_0 - gtk3 with libsoup2
webkitgtk_4_1 - gtk3 with libsoup3
webkitgtk_6_0 - gtk4 https://github.com/NixOS/nixpkgs/blob/10968e9b9f237004f3b27f45581cbb3e481bc270/pkgs/top-level/all-packages.nix#L10440-L10453 | 07:43:14 |
ghpzin | It is because of libsoup2 -> libsoup3 migration that a lot of things never did. https://github.com/NixOS/nixpkgs/blob/10968e9b9f237004f3b27f45581cbb3e481bc270/pkgs/development/libraries/webkitgtk/default.nix#L84-L89 From: https://github.com/NixOS/nixpkgs/pull/182618
- libsoup3 migration
...
Processes can only link against one version of the library (even transitively), or there will be symbol clashes!
https://discourse.gnome.org/t/phodav-transition-notes/10483 Aliases now:
webkitgtk_4_0 - gtk3 with libsoup2
webkitgtk_4_1 - gtk3 with libsoup3
webkitgtk_6_0 - gtk4 https://github.com/NixOS/nixpkgs/blob/10968e9b9f237004f3b27f45581cbb3e481bc270/pkgs/top-level/all-packages.nix#L10440-L10453 | 07:44:31 |