nixos module that does nothing

This commit is contained in:
Alex Tau 2025-04-28 18:11:42 +03:00
parent 96e98a3044
commit cda20a654f
2 changed files with 16 additions and 0 deletions

14
modules/default.nix Normal file
View file

@ -0,0 +1,14 @@
package:
{
lib,
...
}:
{
options.services.lego-monitoring = {
enable = lib.mkEnableOption "Enable lego-monitoring service."
};
config = {};
}