From 0f93e58628596297711954ba5ba6d3a3ef9cf3dd Mon Sep 17 00:00:00 2001 From: NAHO <90870942+trueNAHO@users.noreply.github.com> Date: Thu, 26 Jun 2025 03:49:46 +0200 Subject: [PATCH] flake: infer default.nix import path (#1544) Fixes: c765b15fc394 ("stylix: move testbed to a dedicated directory") Reviewed-by: awwpotato --- flake/packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake/packages.nix b/flake/packages.nix index d603d2af..23005774 100644 --- a/flake/packages.nix +++ b/flake/packages.nix @@ -15,7 +15,7 @@ # Testbeds are virtual machines based on NixOS, therefore they are # only available for Linux systems. (lib.mkIf pkgs.stdenv.hostPlatform.isLinux ( - import ../stylix/testbed/default.nix { + import ../stylix/testbed { inherit pkgs inputs lib; } ))