| 23 Oct 2024 |
@paperdigits:matrix.org | In reply to @ixxie:matrix.org thanks for the tip now that my keyboards are running QMK, I don't think I can go back. | 01:06:42 |
| Leonardo Santiago set a profile picture. | 21:07:49 |
| 25 Oct 2024 |
| Renato Trevisan joined the room. | 07:18:29 |
| 26 Oct 2024 |
| @plmh:matrix.org joined the room. | 05:20:44 |
| 27 Oct 2024 |
| nat changed their profile picture. | 18:01:25 |
| nat changed their profile picture. | 18:03:13 |
| 30 Oct 2024 |
| Philipp Jungkamp joined the room. | 11:58:26 |
| 27 Oct 2024 |
| nat changed their profile picture. | 18:06:22 |
| nat changed their profile picture. | 18:07:40 |
| 31 Oct 2024 |
figsoda | anyone mind taking a look at https://github.com/NixOS/nixpkgs/pull/350750 ? | 20:08:48 |
| 1 Nov 2024 |
@blitz:chat.x86.lol | In reply to @figsoda:matrix.org anyone mind taking a look at https://github.com/NixOS/nixpkgs/pull/350750 ? Did someone try to upstream this change? | 14:08:09 |
Jan Tojnar | yeah, I would like to see this upstreamed, do not want to maintain this indefinitely | 15:05:09 |
figsoda | In reply to @blitz:chat.x86.lol Did someone try to upstream this change? The original patch for gtk3 wasn't accepted and the bug was marked as resolved wontfix | 15:29:13 |
| 3 Nov 2024 |
FreeVariable | Hi, I am updating the docs at https://wiki.nixos.org/wiki/GNOME#Dynamic_triple_buffering. I am testing https://gitlab.gnome.org/vanvugt/mutter/-/commits/triple-buffering-v4-47 (using the sha-256 of the latest commit) but it doesn't seem to be used when doing sudo nixos-rebuild. Any clue? | 12:54:47 |
FreeVariable | For example
nixpkgs.overlays = [
# GNOME 47: triple-buffering-v4-47
(final: prev: {
gnome = prev.gnome.overrideScope (gnomeFinal: gnomePrev: {
mutter = gnomePrev.mutter.overrideAttrs (old: {
src = pkgs.fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "vanvugt";
repo = "mutter";
rev = "triple-buffering-v4-47";
hash = "123";
};
});
});
})
];
will not trigger any build error even though the hash is clearly incorrect.
| 12:56:04 |
FreeVariable | * For example
nixpkgs.overlays = [
# GNOME 47: triple-buffering-v4-47
(final: prev: {
gnome = prev.gnome.overrideScope (gnomeFinal: gnomePrev: {
mutter = gnomePrev.mutter.overrideAttrs (old: {
src = pkgs.fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "vanvugt";
repo = "mutter";
rev = "triple-buffering-v4-47";
hash = "123";
};
});
});
})
];
will not trigger any build error even though the hash is clearly incorrect.
| 13:04:45 |
FreeVariable | My bad, mutter was taken out of the gnome namespace. | 14:12:25 |