Files
clan-core/clanServices/trusted-nix-caches/flake-module.nix
2025-06-17 20:38:31 +02:00

17 lines
322 B
Nix

{ lib, ... }:
let
module = lib.modules.importApply ./default.nix { };
in
{
clan.modules.trusted-nix-caches = module;
perSystem =
{ ... }:
{
clan.nixosTests.trusted-nix-caches = {
imports = [ ./tests/vm/default.nix ];
clan.modules."@clan/trusted-nix-caches" = module;
};
};
}