Files
2025-08-26 09:44:01 +02:00

23 lines
447 B
Nix

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