20 lines
358 B
Nix
20 lines
358 B
Nix
{ inputs, self, ... }:
|
|
let
|
|
module = ./default.nix;
|
|
in
|
|
{
|
|
clan.modules = {
|
|
apple-network = module;
|
|
};
|
|
perSystem =
|
|
{ ... }:
|
|
{
|
|
clan.nixosTests.service-apple-network = {
|
|
imports = [ ./tests/vm/default.nix ];
|
|
_module.args = { inherit self inputs; };
|
|
|
|
clan.modules."@clan/apple-network" = module;
|
|
};
|
|
};
|
|
}
|