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