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"; _class = "nixos";
}; };
}; };
runtime-environment = attrTag ( runtime-environment = attrTag {
mapAttrs nixos = mkOption {
( type = submoduleWith {
name: options: modules = [
mkOption { {
type = submoduleWith { options = {
modules = [ module = mkOption {
{ description = "The NixOS module of the run-time environment";
options = options // { type = deferredModule;
module = mkOption { default = config.runtime-configurations.nixos;
description = "The NixOS module of the run-time environment"; readOnly = true;
type = deferredModule; };
default = config.runtime-configurations.${name}; };
readOnly = true; }
}; ];
}; };
} };
]; };
};
}
)
{
nixos = { };
}
);
application = submoduleWith { application = submoduleWith {
description = "A Fediversity application"; description = "A Fediversity application";
modules = [ modules = [