pingvin service

This commit is contained in:
2025-08-05 16:59:34 +07:00
parent cc0aaff3ed
commit 846d689b2c
6 changed files with 137 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{ lib, ... }:
let
module = lib.modules.importApply ./default.nix { };
in
{
clan.modules = {
pingvin = module;
};
perSystem =
{ ... }:
{
clan.nixosTests.pingvin = {
imports = [ ./tests/vm/default.nix ];
clan.modules."@clan/pingvin" = module;
};
};
}