Merge pull request 'flake: test all flake outputs' (#164) from Mic92-main into main

This commit is contained in:
clan-bot
2023-08-24 12:41:46 +00:00

View File

@@ -1,5 +1,5 @@
{ self, ... }: { { self, ... }: {
perSystem = { pkgs, ... }: { perSystem = { pkgs, lib, self', ... }: {
checks = checks =
let let
nixosTestArgs = { nixosTestArgs = {
@@ -15,7 +15,12 @@
schemaTests = pkgs.callPackages ./schemas.nix { schemaTests = pkgs.callPackages ./schemas.nix {
inherit self; inherit self;
}; };
flakeOutputs = lib.mapAttrs' (name: config: lib.nameValuePair "nixos-${name}" config.config.system.build.toplevel) self.nixosConfigurations
// lib.mapAttrs' (n: lib.nameValuePair "package-${n}") self'.packages
// lib.mapAttrs' (n: lib.nameValuePair "devShell-${n}") self'.devShells
// lib.mapAttrs' (name: config: lib.nameValuePair "home-manager-${name}" config.activation-script) (self'.legacyPackages.homeConfigurations or { });
in in
nixosTests // schemaTests; nixosTests // schemaTests // flakeOutputs;
}; };
} }