mob next [ci-skip] [ci skip] [skip ci]

lastFile:modules/clan/zfs-snapshot-backup/default.nix
This commit is contained in:
2025-10-10 17:01:14 +07:00
parent bd80062673
commit 2e999e41d9
2 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1 @@
{ }

View File

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