mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
flake: unwrap devShells.*.tests
This reverts commit 6f9781b1b0
to fix
errors of `nix flake check` and `nix flake show`.
The `devShells` attribute is expected to be an attrset of derivations,
not nested attrsets.
This commit is contained in:
parent
d82c9af817
commit
43ba4489bd
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@
|
|||
let
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
tests = import ./tests { inherit pkgs; };
|
||||
in { tests = tests.run; });
|
||||
in tests.run);
|
||||
|
||||
packages = forAllSystems (system:
|
||||
let
|
||||
|
|
Loading…
Reference in a new issue