data model formatting/linting #3

Closed
kiara wants to merge 2 commits from kiara/Fediversity:fricklerhandwerk-data-model-as-diagram into data-model-as-diagram
2 changed files with 4 additions and 4 deletions
Showing only changes of commit 26adce03fe - Show all commits

View file

@ -165,7 +165,7 @@ in
} }
); );
resources = fediversity.applications.hello.resources fediversity.example-configuration.applications.hello; resources = fediversity.applications.hello.resources fediversity.example-configuration.applications.hello;
hello-shell = (resources).resources.hello.login-shell; hello-shell = resources.resources.hello.login-shell;
environment = fediversity.environments.single-nixos-vm.resources.operator-environment.login-shell; environment = fediversity.environments.single-nixos-vm.resources.operator-environment.login-shell;
result = mkDeployment { result = mkDeployment {
modules = [ modules = [
@ -174,7 +174,7 @@ in
}; };
in in
rec { {
number-of-resources = with lib; length (attrNames fediversity.resources); number-of-resources = with lib; length (attrNames fediversity.resources);
inherit (fediversity) example-configuration; inherit (fediversity) example-configuration;
hello-package-exists = hello-shell.packages ? hello; hello-package-exists = hello-shell.packages ? hello;
@ -186,7 +186,7 @@ in
in in
{ {
inherit (operator) isNormalUser; inherit (operator) isNormalUser;
packages = with lib; map (p: "${p.pname}") operator.packages; packages = map (p: "${p.pname}") operator.packages;
extraGroups = operator.extraGroups; extraGroups = operator.extraGroups;
}; };
deployment = { deployment = {

View file

@ -76,7 +76,7 @@ in
# TODO(@fricklerhandwerk): do we need a function type here as well, or is it in the way? # TODO(@fricklerhandwerk): do we need a function type here as well, or is it in the way?
options.apply = mkOption { options.apply = mkOption {
description = "Apply the policy to a request"; description = "Apply the policy to a request";
type = with types; functionTo policy.config.resource-type; type = functionTo policy.config.resource-type;
}; };
}) })
]; ];