From 1baa44cf8c3a4699d0beda91f39ba7942b46269d Mon Sep 17 00:00:00 2001 From: NAHO <90870942+trueNAHO@users.noreply.github.com> Date: Tue, 8 Jul 2025 22:56:08 +0200 Subject: [PATCH] flake: infer default.nix import path (#1636) Re-apply commit 0f93e5862859 ("flake: infer default.nix import path (#1544)") that was accidentally reverted in commit a5c1532ab8bf ("flake: partition dev inputs (#1289)"). Link: https://github.com/nix-community/stylix/pull/1636 Reviewed-by: awwpotato --- flake/dev/packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake/dev/packages.nix b/flake/dev/packages.nix index bb8aa9b1..39d6eb1a 100644 --- a/flake/dev/packages.nix +++ b/flake/dev/packages.nix @@ -10,7 +10,7 @@ # Testbeds are virtual machines based on NixOS, therefore they are # only available for Linux systems. packages = lib.mkIf pkgs.stdenv.hostPlatform.isLinux ( - import ../../stylix/testbed/default.nix { + import ../../stylix/testbed { inherit pkgs inputs lib; } );