nix: update flake lock

Was unfortunately not able to implement vm test suite before this release. Hopefully the last nixos update we have to follow.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2026-06-05 09:53:15 +09:00
parent 282462c2f0
commit 7eafc7b1e4
12 changed files with 308 additions and 95 deletions
+3 -1
View File
@@ -15,7 +15,9 @@ testers.nixosTest {
environment.hakurei = lib.mkIf withRace rec {
# race detector does not support static linking
package = (pkgs.callPackage ../../package.nix { }).overrideAttrs (previousAttrs: {
GOFLAGS = previousAttrs.GOFLAGS ++ [ "-race" ];
env = previousAttrs.env // {
GOFLAGS = previousAttrs.env.GOFLAGS + " -race";
};
});
hsuPackage = options.environment.hakurei.hsuPackage.default.override { hakurei = package; };
};