test for configuration passes, test for deployment wip

This commit is contained in:
Kiara Grouwstra 2025-07-03 20:31:26 +02:00
parent d185d5f94f
commit 4880766c59
Signed by: kiara
SSH key fingerprint: SHA256:COspvLoLJ5WC5rFb9ZDe5urVCkK4LJZOsjfF4duRJFU

View file

@ -108,7 +108,9 @@ in
module =
{ ... }:
{
enable = lib.mkEnableOption "Hello in the shell";
options = {
enable = lib.mkEnableOption "Hello in the shell";
};
};
implementation =
cfg:
@ -162,9 +164,16 @@ in
);
in
{
inherit (fediversity) example-deployment;
inherit (fediversity)
example-configuration
example-deployment
;
};
expected = {
example-configuration = {
enable = true;
applications.hello.enable = true;
};
};
};
}