forked from newedge/infra
1a3a532a9d
lastFile:modules/clan/gitea/default.nix
19 lines
296 B
Nix
19 lines
296 B
Nix
{ lib, ... }:
|
|
let
|
|
module = lib.modules.importApply ./default.nix { };
|
|
in
|
|
{
|
|
clan.modules = {
|
|
gitea = module;
|
|
};
|
|
perSystem =
|
|
{ ... }:
|
|
{
|
|
clan.nixosTests.gitea = {
|
|
imports = [ ./tests/vm/default.nix ];
|
|
|
|
clan.modules."@clan/gitea" = module;
|
|
};
|
|
};
|
|
}
|