Files
clan-core/nixosModules/clanCore/machine-id/tests/flake-module.nix
2025-08-21 14:52:13 +02:00

18 lines
351 B
Nix

{
perSystem.clan.nixosTests.machine-id = {
name = "service-machine-id";
clan = {
directory = ./.;
machines.server = {
clan.core.settings.machine-id.enable = true;
};
};
# This is not an actual vm test, this is a workaround to
# generate the needed vars for the eval test.
testScript = "";
};
}