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