mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-10 12:26:00 +01:00
35 lines
828 B
Nix
35 lines
828 B
Nix
{
|
|
inputs,
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
perSystem = {
|
|
pkgs,
|
|
self',
|
|
...
|
|
}: let
|
|
inherit (lib.filesystem) packagesFromDirectoryRecursive;
|
|
inherit (lib.customisation) callPackageWith;
|
|
inherit (lib.attrsets) recursiveUpdate;
|
|
|
|
defaultInherits = {
|
|
inherit (config.flake) homeManagerModules nixosModules;
|
|
inherit inputs;
|
|
};
|
|
|
|
callPackage = callPackageWith (recursiveUpdate pkgs defaultInherits);
|
|
in {
|
|
checks = packagesFromDirectoryRecursive {
|
|
inherit callPackage;
|
|
testProfile = ../profiles/minimal.nix;
|
|
directory = ./checks;
|
|
};
|
|
|
|
# expose checks as packages to be built
|
|
packages = {
|
|
test-home-manager-module = self'.checks.homeManagerModule.driverInteractive;
|
|
test-nixos-module = self'.checks.nixosModule.driverInteractive;
|
|
};
|
|
};
|
|
}
|