| 24 May 2026 |
emily | I believe it was just there to handle the case where we had both 24.11 and 25.05 but only one had a merge queue | 15:58:50 |
jopejoe1 | Thanks vor the info will probly do that. | 16:14:59 |
| 9lore joined the room. | 18:42:05 |
| 25 May 2026 |
hexa | https://seashells.io/v/57ARZse2 nixos-26.05 | 16:16:49 |
hexa | advanced | 16:26:12 |
| Tom joined the room. | 20:28:20 |
| 26 May 2026 |
Sigmanificient |  Download image.png | 13:41:25 |
yaya | Should be fixed in a few minutes. CI is still doing its thing | 13:42:13 |
Tom | (Mentioning it because it's part of the branch-off checklist: i took care of the incus image yesterday and 26.05 is now already available via https://images.linuxcontainers.org/) | 13:51:57 |
hexa | missing merge queue on staging-26.05 still | 17:18:25 |
| 27 May 2026 |
leona | https://github.com/NixOS/org/pull/258 ^^ | 06:18:54 |
yaya | thanks, I'll add it to the release manager wiki so we won't forget about it next time. | 06:19:19 |
| 28 May 2026 |
| @crgre:matrix.org left the room. | 04:41:16 |
Vladimír Čunát |
Two days before expected release date, change stableBranch to true in Hydra and wait for the channel to update
We do this today, right?
| 06:54:51 |
Vladimír Čunát | Time to merge stuff that must be in channel during the release announcement, I'd say. | 06:55:16 |
Vladimír Čunát | (e.g. lutris-free is annoying but perhaps not a blocker.) | 06:57:29 |
Vladimír Čunát | * (e.g. lutris-free is annoying to some but perhaps not a blocker.) | 06:57:47 |
yaya | yes, I was about to ping the infra people today | 12:34:49 |
hexa | hi, we are the infra people | 12:38:49 |
Vladimír Čunát | Anything remaining? | 12:38:54 |
Vladimír Čunát | (I switched the jobset settings now.) | 12:39:02 |
yaya | thanks for flipping the switch :) | 13:22:25 |
| @hans5632:matrix.org joined the room. | 15:38:07 |
| 29 May 2026 |
| lassulus changed their profile picture. | 07:06:37 |
| @quidome:matrix.org joined the room. | 07:20:23 |
Vladimír Čunát | Uh, the trivial 26.11 bump in a2e55e31d6b broke nixosTests.zfs.installer, blocking the nixos-unstable channel. No idea how. I retried locally a few times. Hydra logs e.g. at https://hydra.nixos.org/build/330657032 | 10:20:42 |
Vladimír Čunát | * Uh, the trivial 26.11 bump in a2e55e31d6b broke nixosTests.zfs.installer, blocking the nixos-unstable channel. No idea how. I retried locally a few times (on that commit and its parent). Hydra logs e.g. at https://hydra.nixos.org/build/330657032 | 10:20:57 |
Vladimír Čunát | * Uh, the trivial 26.11 bump in a2e55e31d6b broke nixosTests.zfs.installer, blocking the nixos-unstable channel. No idea how. I retried locally a few times (on that commit and its parent). Hydra logs e.g. at https://hydra.nixos.org/build/330657032 | 10:23:11 |
ghpzin | installer # evaluation warning: boot.zfs.forceImportRoot is using the default value of true. It is highly recommended to set it to false, the new default from 26.11 on, to reduce the risk of data loss. Alternatively, you can silence this warning by explicitly setting it to true.
This looks suspicious and this made it build on a2e55e31d6b for me:
--- a/nixos/modules/tasks/filesystems/zfs.nix
+++ b/nixos/modules/tasks/filesystems/zfs.nix
@@ -354,7 +354,7 @@
forceImportRoot = lib.mkOption {
type = lib.types.bool;
- default = lib.versionOlder config.system.stateVersion "26.11";
+ default = lib.versionOlder config.system.stateVersion "27.11";
defaultText = lib.literalExpression ''lib.versionOlder config.system.stateVersion "26.11"'';
description = ''
Forcibly import the ZFS root pool(s) during early boot.
So somewhere in tests it should be set to something else ? | 11:00:18 |
ghpzin | installer # evaluation warning: boot.zfs.forceImportRoot is using the default value of true. It is highly recommended to set it to false, the new default from 26.11 on, to reduce the risk of data loss. Alternatively, you can silence this warning by explicitly setting it to true.
This looks suspicious and this made it build on a2e55e31d6b for me:
--- a/nixos/modules/tasks/filesystems/zfs.nix
+++ b/nixos/modules/tasks/filesystems/zfs.nix
@@ -354,7 +354,7 @@
forceImportRoot = lib.mkOption {
type = lib.types.bool;
- default = lib.versionOlder config.system.stateVersion "26.11";
+ default = lib.versionOlder config.system.stateVersion "27.11";
defaultText = lib.literalExpression ''lib.versionOlder config.system.stateVersion "26.11"'';
description = ''
Forcibly import the ZFS root pool(s) during early boot.
So somewhere in tests it should be set to something else ? | 11:00:26 |