Files
clan-core/clanServices/trusted-nix-caches/flake-module.nix
2025-09-16 16:07:54 +02:00

17 lines
289 B
Nix

{ ... }:
let
module = ./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;
};
};
}