clanService/phonebox: phone and fax network built on yggdrasil with predefine number
This commit is contained in:
23
modules/clan/phonebox/flake-module.nix
Normal file
23
modules/clan/phonebox/flake-module.nix
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
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;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user