Files
clan-core/clanServices/state-version/flake-module.nix
Johannes Kirschbauer 392211d65e clanServices: bring back state-version
It seems it was accidentially deleted. We cannot do that @davHau please offer a migration path
That allows people to migrate, without breaking their clans
2025-07-01 17:45:02 +02:00

17 lines
307 B
Nix

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