| 8 Oct 2023 |
| @5m5z3q888q5prxkg:chat.lightnovel-dungeon.de joined the room. | 20:47:37 |
Jan Tojnar | bobby285271: I have been using the gnome branch on my laptop for the past month and roughly quarter to half of login attempts (X session) will end up stuck on a gray screen with the X cursor. Still need to find time to investigate the logs. | 22:03:45 |
Jan Tojnar | I have also seen some issues that looked like if some portal was not running (geary did not start, some apps did not follow color scheme) but I only saw that twice and could not reproduce it after reboot | 22:07:12 |
bobby285271 | Does your log matches the weird thing I met starting from https://github.com/NixOS/nixpkgs/pull/247766#issuecomment-1695809990 ? What if you revert the cairo bump? (or, do you only start experiencing this after my first force push? | 23:24:46 |
| 10 Oct 2023 |
| @pokon548:bukn.uk joined the room. | 05:12:35 |
| @pokon548:bukn.uk left the room. | 05:12:54 |
| nadir joined the room. | 13:38:43 |
| @galaxy-nova:matrix.org joined the room. | 17:34:53 |
| 11 Oct 2023 |
@galaxy-nova:matrix.org | Redacted or Malformed Event | 01:32:49 |
@ThorHop:matrix.org | In reply to @bobby285271:matrix.org Does your log matches the weird thing I met starting from https://github.com/NixOS/nixpkgs/pull/247766#issuecomment-1695809990 ? What if you revert the cairo bump? (or, do you only start experiencing this after my first force push? "Update on this: build failed because of a timeout 20h into compilation, so it seems I may not be able to run the test on that device due to lack of resources."
Sadness :( | 12:51:10 |
piegames | Sorry I'm a bit out of the loop. Can I already package the extensions for 45? | 14:31:32 |
kenji | This here:
environment.systemPackages = [
(pkgs.writeShellScriptBin "variables" ''
set -e
echo ${config.environment.sessionVariables.EDITOR}
'')
];
Together with gnome.enable leads to infinite recursion, that is a bug, or?
| 20:20:46 |
Jan Tojnar | In reply to @a-kenji:matrix.org
This here:
environment.systemPackages = [
(pkgs.writeShellScriptBin "variables" ''
set -e
echo ${config.environment.sessionVariables.EDITOR}
'')
];
Together with gnome.enable leads to infinite recursion, that is a bug, or?
I would consider it to be one. It is caused by this line https://github.com/NixOS/nixpkgs/blob/dfe563cbdbc03b44f7bd76f6e36cc88e6722f483/nixos/modules/services/x11/desktop-managers/gnome.nix#L518 because system path includes system packages | 20:28:27 |
Jan Tojnar | the line should probably be changed to /run/current-system/sw to allow installing new Nautilus extensions without having to log out | 20:29:19 |
Jan Tojnar | or even better replace the global variable with nautilus-with-extensions package (we do not have it yet) | 20:30:08 |
Jan Tojnar | by the way, there is at least one other offending module: https://github.com/NixOS/nixpkgs/blob/dfe563cbdbc03b44f7bd76f6e36cc88e6722f483/nixos/modules/config/console.nix#L127 | 20:31:10 |