clanService/grafana: add requred attr

This commit is contained in:
2026-03-02 18:08:41 +07:00
parent 9b7e9b5be6
commit 73232a4800
11 changed files with 81 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{ lib, ... }:
{ self, inputs, ... }:
let
module = lib.modules.importApply ./default.nix { };
module = ./default.nix;
in
{
clan.modules = {
@@ -11,6 +11,7 @@ in
{
clan.nixosTests.service-grafana = {
imports = [ ./tests/vm/default.nix ];
_module.args = { inherit self inputs; };
clan.modules."@clan/grafana" = module;
};