Chore: remove spurious module.nix

This commit is contained in:
Johannes Kirschbauer
2025-05-15 12:08:44 +02:00
parent b17eb57fb9
commit ef6eba9df2

View File

@@ -1,21 +0,0 @@
{ lib, ... }:
{
_class = "clan.service";
manifest.name = "test";
roles.peer.interface =
{ ... }:
{
options.debug = lib.mkOption { default = 1; };
};
roles.peer.perInstance =
{ settings, ... }:
{
nixosModule = {
options.debug = lib.mkOption {
default = settings;
};
};
};
}