Compare commits

..

1 commit

Author SHA1 Message Date
064d59cb19
draft types 2025-06-23 09:16:10 +02:00

View file

@ -18,31 +18,24 @@ let
_class = "nixos";
};
};
runtime-environment = attrTag (
mapAttrs
(
name: options:
mkOption {
type = submoduleWith {
modules = [
{
options = options // {
module = mkOption {
description = "The NixOS module of the run-time environment";
type = deferredModule;
default = config.runtime-configurations.${name};
readOnly = true;
};
};
}
];
};
}
)
{
nixos = { };
}
);
runtime-environment = attrTag {
nixos = mkOption {
type = submoduleWith {
modules = [
{
options = {
module = mkOption {
description = "The NixOS module of the run-time environment";
type = deferredModule;
default = config.runtime-configurations.nixos;
readOnly = true;
};
};
}
];
};
};
};
application = submoduleWith {
description = "A Fediversity application";
modules = [