mirror of
https://forgejo.altau.su/lego/lego-monitoring.git
synced 2026-03-10 04:41:10 +00:00
nixos module that does nothing
This commit is contained in:
parent
96e98a3044
commit
cda20a654f
2 changed files with 16 additions and 0 deletions
|
|
@ -83,6 +83,8 @@
|
||||||
|
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
nixosModules.default = (import ./modules/default.nix) self.packages.x86_64-linux.default;
|
||||||
|
|
||||||
# Package a virtual environment as our main application.
|
# Package a virtual environment as our main application.
|
||||||
#
|
#
|
||||||
# Enable no optional dependencies for production build.
|
# Enable no optional dependencies for production build.
|
||||||
|
|
|
||||||
14
modules/default.nix
Normal file
14
modules/default.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
package:
|
||||||
|
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
|
{
|
||||||
|
options.services.lego-monitoring = {
|
||||||
|
enable = lib.mkEnableOption "Enable lego-monitoring service."
|
||||||
|
};
|
||||||
|
|
||||||
|
config = {};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue