Remove state-version module and service

This commit is contained in:
pinpox
2025-06-30 11:25:22 +02:00
parent 7a4eeb5b16
commit ef3c22f240
11 changed files with 0 additions and 170 deletions

View File

@@ -1,16 +0,0 @@
{ 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;
};
};
}