| 9 Jul 2024 |
jayhenks | ok so i just found an issue about it on github https://github.com/NixOS/nixpkgs/issues/319587 | 17:19:26 |
jayhenks | Jan Tojnar: i saw you commented on this problem, was there a fix already upstreamed to nixpkgs? | 17:23:35 |
| 10 Jul 2024 |
Jan Tojnar | yes, the environment variable can still only take a single cache file. I added gnome._gdkPixbufCacheBuider_DO_NOT_USE to allow merging multiple caches into one. | 05:42:08 |
Jan Tojnar | I did not want to document it until the API stabilized but I do not think there will be any changes at this point. We should probably just drop the suffix and document it. | 05:43:58 |
Jan Tojnar | In reply to @jayhenks:matrix.org Jan Tojnar: i saw you commented on this problem, was there a fix already upstreamed to nixpkgs? no upstream or downstream fix yet. You can override tracker-miners locally for now tracker-miners.overrideAttrs (old: { mesonFlags = old.mesonFlags ++ [ "-Dlandlock=disabled" ]; }) | 05:46:45 |
| 12 Jul 2024 |
| @dchoi:matrix.org left the room. | 08:25:33 |
jayhenks | Jan Tojnar: after adding the below code I still do not see my music files, or am I doing it wrong?
environment.systemPackages = [
(pkgs.tracker-miners.overrideAttrs (old: { mesonFlags = old.mesonFlags ++ [ "-Dlandlock=disabled" ]; }))
];
| 09:27:54 |
jayhenks | Reindexed after doing this | 09:28:17 |
jayhenks | also stopped and started, same error:
.tracker-miner-[983792]: Could not launch metadata extractor: Failed to execute child process “/nix/store/xs8fjfvy35484rkhh6ykgb9p2z0d60cl-tracker-miners-3.7.3/libexec/tracker-extract-3” (Permission denied)
| 09:32:23 |
jayhenks | * also stopped and started the service, same error:
.tracker-miner-[983792]: Could not launch metadata extractor: Failed to execute child process “/nix/store/xs8fjfvy35484rkhh6ykgb9p2z0d60cl-tracker-miners-3.7.3/libexec/tracker-extract-3” (Permission denied)
| 09:32:37 |
| 13 Jul 2024 |
| @adham-omran:matrix.org joined the room. | 12:42:02 |
Jan Tojnar | jayhenks: The already present unpatched miners probably won out. You would have to disable this option and then replicate the options below. Or use an overlay. | 12:51:57 |
jayhenks | In reply to @jtojnar:matrix.org jayhenks: The already present unpatched miners probably won out. You would have to disable this option and then replicate the options below. Or use an overlay. alright yeah, I will just wait for an upstream patch for this issue. Thanks for all the help | 13:15:56 |
| 14 Jul 2024 |
p14 | woot https://www.gamingonlinux.com/2024/06/drm-lease-protocol-support-finally-merged-for-gnome-wayland-great-for-vr-fans/.
Is there a straightforward way to run the prerelease mutter without running prerelease everything? Or is this just going to be too cursed? | 17:26:45 |
| 15 Jul 2024 |
| @okamis:matrix.org left the room. | 09:16:27 |
Jan Tojnar | In reply to @p14:matrix.org woot https://www.gamingonlinux.com/2024/06/drm-lease-protocol-support-finally-merged-for-gnome-wayland-great-for-vr-fans/.
Is there a straightforward way to run the prerelease mutter without running prerelease everything? Or is this just going to be too cursed? You would have to try. I would start with mutter and gnome-shell overlay and add more stuff until it builds – it migh t not be that many or it might be ton of work. | 23:33:14 |
Jan Tojnar | Or you can try checking meson.build files of the projects for version bounds | 23:33:54 |
| 16 Jul 2024 |
| getchoo joined the room. | 08:25:03 |
| @semsinchenko:matrix.org changed their display name from Semyon to Sem. | 12:45:07 |
| @semsinchenko:matrix.org left the room. | 12:45:47 |
p14 | In reply to @jtojnar:matrix.org You would have to try. I would start with mutter and gnome-shell overlay and add more stuff until it builds – it migh t not be that many or it might be ton of work. I actually had some pretty quick success and got steamvr running under wayland. Had to revert some patches and hack some pieces out but wasnt too much effort. The main path worked but there were some crashy paths. | 17:28:30 |
| 17 Jul 2024 |
| @flashgnash:matrix.org set a profile picture. | 13:17:05 |
| @flashgnash:matrix.org changed their profile picture. | 13:17:23 |
FreeVariable | Is there a way to peramently disable "Key sequence to kill X server"? | 16:55:05 |
FreeVariable |  Download Capture d’écran du 2024-07-17 18-53-42.png | 16:55:05 |
FreeVariable | * Is there a way to permanently disable "Key sequence to kill X server"? | 16:55:17 |
FreeVariable | In reply to@jtojnar:matrix.org I guess you could set /org/gnome/desktop/input-sources/xkb-options to an empty array with dconf module as a workaround This key already is set to an empty array | 16:57:49 |
FreeVariable | * This key already is set to an empty array, probably as per my unticking the checkbox. The issue is that it ticks itself back from time to time when rebuilding. | 16:58:47 |
balacij | In reply to @setunset:matrix.org This key already is set to an empty array In your home-manager configuration, add:
dconf.settings = {
"org/gnome/desktop/input-sources" = {
"xkb-options" = lib.gvariant.mkEmptyArray lib.gvariant.type.string;
};
};
| 22:00:49 |
balacij | Setting it in my main configuration.nix didn't work for some reason. However, home-manager's configuration works.
| 22:02:42 |