Compare commits

..

No commits in common. "fbb2bca24221be35376a3156640c0148c2b62dfb" and "63c200f8379f8372f334ca965941725220558979" have entirely different histories.

3 changed files with 134 additions and 179 deletions

View file

@ -22,7 +22,6 @@ in
fediversity = eval ( fediversity = eval (
{ config, ... }: { config, ... }:
{ {
_class = "fediversity-settings";
config = { config = {
resources.nixos-configuration = { resources.nixos-configuration = {
description = "An entire NixOS configuration"; description = "An entire NixOS configuration";
@ -52,7 +51,6 @@ in
}; };
}; };
resources.login-shell = { resources.login-shell = {
_class = "fediversity-resource";
description = "The operator needs to be able to log into the shell"; description = "The operator needs to be able to log into the shell";
request = request =
{ ... }: { ... }:
@ -106,12 +104,10 @@ in
applications.hello = applications.hello =
{ ... }: { ... }:
{ {
_class = "fediversity-application";
description = ''Command-line tool that will print "Hello, world!" on the terminal''; description = ''Command-line tool that will print "Hello, world!" on the terminal'';
module = module =
{ ... }: { ... }:
{ {
_class = "fediversity-application-config";
options = { options = {
enable = lib.mkEnableOption "Hello in the shell"; enable = lib.mkEnableOption "Hello in the shell";
}; };
@ -119,25 +115,21 @@ in
implementation = implementation =
cfg: cfg:
lib.optionalAttrs cfg.enable { lib.optionalAttrs cfg.enable {
_class = "fediversity-application-requirements";
dummy.login-shell.packages.hello = pkgs.hello; dummy.login-shell.packages.hello = pkgs.hello;
}; };
}; };
environments.single-nixos-vm = environments.single-nixos-vm =
{ config, ... }: { config, ... }:
{ {
_class = "fediversity-environment";
resources.shell.login-shell.username = "operator"; resources.shell.login-shell.username = "operator";
implementation = implementation =
requests: requests:
{ providers, ... }: { providers, ... }:
{ {
_class = "nixops4Deployment";
providers = { providers = {
inherit (inputs.nixops4.modules.nixops4Provider) local; inherit (inputs.nixops4.modules.nixops4Provider) local;
}; };
resources.the-machine = { resources.the-machine = {
_class = "nixops4Resource";
type = providers.local.exec; type = providers.local.exec;
imports = [ imports = [
inputs.nixops4-nixos.modules.nixops4Resource.nixos inputs.nixops4-nixos.modules.nixops4Resource.nixos
@ -145,7 +137,6 @@ in
nixos.module = nixos.module =
{ ... }: { ... }:
{ {
_class = "nixos";
users.users = config.resources.shell.login-shell.apply ( users.users = config.resources.shell.login-shell.apply (
lib.filterAttrs (_name: value: value ? login-shell) requests lib.filterAttrs (_name: value: value ? login-shell) requests
); );
@ -159,16 +150,12 @@ in
type = config.configuration; type = config.configuration;
readOnly = true; readOnly = true;
default = { default = {
_class = "fediversity-configuration";
enable = true; enable = true;
applications.hello.enable = true; applications.hello.enable = true;
}; };
}; };
example-deployment = mkOption { example-deployment = mkOption {
type = types.submoduleWith { type = types.submodule nixops4Deployment;
class = "nixops4Deployment";
modules = [ nixops4Deployment ];
};
readOnly = true; readOnly = true;
default = config.environments.single-nixos-vm.deployment config.example-configuration; default = config.environments.single-nixos-vm.deployment config.example-configuration;
}; };

View file

@ -10,14 +10,13 @@ let
attrsOf attrsOf
attrTag attrTag
deferredModuleWith deferredModuleWith
submoduleWith submodule
optionType optionType
functionTo functionTo
; ;
functionType = import ./function.nix; functionType = import ./function.nix;
application-requirements = { application-resources = {
_class = "fediversity-application-requirements";
options.resources = mkOption { options.resources = mkOption {
# TODO: maybe transpose, and group the resources by type instead # TODO: maybe transpose, and group the resources by type instead
type = attrsOf ( type = attrsOf (
@ -28,16 +27,14 @@ let
nixops4Deployment = inputs.nixops4.modules.nixops4Deployment.default; nixops4Deployment = inputs.nixops4.modules.nixops4Deployment.default;
in in
{ {
_class = "fediversity-settings";
options = { options = {
resources = mkOption { resources = mkOption {
description = "Collection of deployment resources that can be required by applications and policed by hosting providers"; description = "Collection of deployment resources that can be required by applications and policed by hosting providers";
type = attrsOf (submoduleWith { type = attrsOf (
class = "fediversity-resource"; submodule (
modules = [
(
{ ... }: { ... }:
{ {
_class = "fediversity-resource";
options = { options = {
description = mkOption { description = mkOption {
description = "Description of the resource to help application module authors and hosting providers to work with it"; description = "Description of the resource to help application module authors and hosting providers to work with it";
@ -49,10 +46,10 @@ in
}; };
policy = mkOption { policy = mkOption {
description = "Options for configuring the resource policy for the hosting provider, a description of how the resource is made available"; description = "Options for configuring the resource policy for the hosting provider, a description of how the resource is made available";
type = submoduleWith { type = deferredModuleWith {
class = "fediversity-resource-policy"; staticModules = [
modules = [
{ {
_class = "fediversity-resource-policy";
options.apply = mkOption { options.apply = mkOption {
description = "Apply the policy to a request"; description = "Apply the policy to a request";
}; };
@ -63,15 +60,13 @@ in
}; };
} }
) )
]; );
});
}; };
applications = mkOption { applications = mkOption {
description = "Collection of Fediversity applications"; description = "Collection of Fediversity applications";
type = attrsOf (submoduleWith { type = attrsOf (
class = "fediversity-application"; submodule (application: {
modules = [ _class = "fediversity-application";
(application: {
options = { options = {
description = mkOption { description = mkOption {
description = "Description to be shown in the application overview"; description = "Description to be shown in the application overview";
@ -93,27 +88,22 @@ in
}; };
config-mapping = mkOption { config-mapping = mkOption {
description = "Function type for the mapping from application configuration to required resources"; description = "Function type for the mapping from application configuration to required resources";
type = submoduleWith { type = submodule functionType;
class = "module-function";
modules = [ functionType ];
};
readOnly = true; readOnly = true;
default = { default = {
input-type = application.config.module; input-type = application.config.module;
output-type = application-requirements; output-type = application-resources;
}; };
}; };
}; };
}) })
]; );
});
}; };
environments = mkOption { environments = mkOption {
description = "Run-time environments for Fediversity applications to be deployed to"; description = "Run-time environments for Fediversity applications to be deployed to";
type = attrsOf (submoduleWith { type = attrsOf (
class = "fediversity-environment"; submodule (environment: {
modules = [ _class = "fediversity-environment";
(environment: {
options = { options = {
resources = mkOption { resources = mkOption {
description = '' description = ''
@ -124,15 +114,7 @@ in
# TODO: maybe transpose, and group the resources by type instead # TODO: maybe transpose, and group the resources by type instead
type = attrsOf ( type = attrsOf (
attrTag ( attrTag (
lib.mapAttrs ( lib.mapAttrs (_name: resource: mkOption { type = submodule resource.policy; }) config.resources
_name: resource:
mkOption {
type = submoduleWith {
class = "fediversity-resource-policy";
modules = [ resource.policy ];
};
}
) config.resources
) )
); );
}; };
@ -142,22 +124,16 @@ in
}; };
resource-mapping = mkOption { resource-mapping = mkOption {
description = "Function type for the mapping from resources to a (NixOps4) deployment"; description = "Function type for the mapping from resources to a (NixOps4) deployment";
type = submoduleWith { type = submodule functionType;
class = "module-function";
modules = [ functionType ];
};
readOnly = true; readOnly = true;
default = { default = {
input-type = application-requirements; input-type = application-resources;
output-type = nixops4Deployment; output-type = nixops4Deployment;
}; };
}; };
deployment = mkOption { deployment = mkOption {
description = "Generate a deployment from a configuration"; description = "Generate a deployment from a configuration";
type = functionTo (submoduleWith { type = functionTo (submodule environment.config.resource-mapping.output-type);
class = "fediversity-deployment";
modules = [ environment.config.resource-mapping.output-type ];
});
readOnly = true; readOnly = true;
default = default =
cfg: cfg:
@ -172,17 +148,13 @@ in
}; };
}; };
}) })
]; );
});
}; };
configuration = mkOption { configuration = mkOption {
description = "Configuration type declaring options to be set by operators"; description = "Configuration type declaring options to be set by operators";
type = optionType; type = optionType;
readOnly = true; readOnly = true;
default = submoduleWith { default = submodule {
class = "fediversity-configuration";
modules = [
{
options = { options = {
enable = lib.mkEnableOption { enable = lib.mkEnableOption {
description = "your Fediversity configuration"; description = "your Fediversity configuration";
@ -191,16 +163,11 @@ in
_name: application: _name: application:
mkOption { mkOption {
description = application.description; description = application.description;
type = submoduleWith { type = submodule application.module;
class = "fediversity-application-config";
modules = [ application.module ];
};
default = { }; default = { };
} }
) config.applications; ) config.applications;
}; };
}
];
}; };
}; };
}; };

View file

@ -13,7 +13,6 @@ let
in in
{ {
options = { options = {
_class = "module-function";
input-type = mkOption { input-type = mkOption {
type = deferredModule; type = deferredModule;
}; };
@ -23,7 +22,8 @@ in
function-type = mkOption { function-type = mkOption {
type = optionType; type = optionType;
readOnly = true; readOnly = true;
default = functionTo (submodule { default = functionTo (
submodule (function: {
options = { options = {
input = mkOption { input = mkOption {
type = submodule config.input-type; type = submodule config.input-type;
@ -32,7 +32,8 @@ in
type = submodule config.output-type; type = submodule config.output-type;
}; };
}; };
}); })
);
}; };
}; };
} }