aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/sandbox/configuration.nix
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-12-12 08:39:55 +0900
committerOphestra <cat@gensokyo.uk>2025-12-12 08:39:55 +0900
commitebc67bb8ada03750eee60ab58c945b4745f22af1 (patch)
tree53831db9621fe77261582c272155b701a9845ec5 /test/sandbox/configuration.nix
parente60ff660f69ee4161ee63af3147b5a77d4139e76 (diff)
nix: update flake lock
NixOS 25.11 introduces a crash in cage and an intermittent crash in foot. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'test/sandbox/configuration.nix')
-rw-r--r--test/sandbox/configuration.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sandbox/configuration.nix b/test/sandbox/configuration.nix
index cf2df03d..80c92fdf 100644
--- a/test/sandbox/configuration.nix
+++ b/test/sandbox/configuration.nix
@@ -6,7 +6,7 @@
}:
let
testProgram = pkgs.callPackage ./tool/package.nix { inherit (config.environment.hakurei.package) version; };
- testCases = import ./case pkgs.system lib testProgram;
+ testCases = import ./case pkgs.stdenv.hostPlatform.system lib testProgram;
in
{
users.users = {
@@ -33,7 +33,7 @@ in
hakurei -v run hakurei-test \
-p "/var/tmp/.hakurei-check-ok.0" \
-t ${toString (builtins.toFile "hakurei-pd-want.json" (builtins.toJSON testCases.pd.want))} \
- -s ${testCases.pd.expectedFilter.${pkgs.system}} "$@"
+ -s ${testCases.pd.expectedFilter.${pkgs.stdenv.hostPlatform.system}} "$@"
'')
];