Compare commits

..

5 commits

Author SHA1 Message Date
9f596ad820
data model: add classes
specifies classes in the data model, raising these to from `_class`
model attributes to `subModuleWith`'s `class` parameter where possible.

note: resource policy has remained as to use `deferredModuleWith`
(rather than `submoduleWith`) to ensure evaluation will go thru.
2025-07-31 20:55:27 +02:00
9c219341b1 Merge pull request 'move nixops4Deployment class' (#6) from kiara/Fediversity:data-model-fix-root-class into deployment-data-model-with-tests
Reviewed-on: #6
Reviewed-by: Valentin Gagarin <valentin.gagarin@tweag.io>
2025-07-31 18:17:56 +02:00
8e8787d662
move nixops4Deployment class 2025-07-31 17:13:24 +02:00
7ce3902851
put config stuff in an attrset 2025-07-31 17:08:40 +02:00
68b834b6d7
fix linter gripes 2025-07-31 17:03:43 +02:00
2 changed files with 23 additions and 22 deletions

View file

@ -68,24 +68,26 @@ in
default = false; default = false;
}; };
}; };
config.resource-type = types.raw; # TODO: splice out the user type from NixOS config = {
config.apply = resource-type = types.raw; # TODO: splice out the user type from NixOS
requests: apply =
let requests:
# Filter out requests that need wheel if policy doesn't allow it let
validRequests = lib.filterAttrs ( # Filter out requests that need wheel if policy doesn't allow it
_name: req: !req.login-shell.wheel || config.wheel validRequests = lib.filterAttrs (
) requests.resources; _name: req: !req.login-shell.wheel || config.wheel
in ) requests.resources;
lib.optionalAttrs (validRequests != { }) { in
${config.username} = { lib.optionalAttrs (validRequests != { }) {
isNormalUser = true; ${config.username} = {
packages = isNormalUser = true;
with lib; packages =
attrValues (concatMapAttrs (_name: request: request.login-shell.packages) validRequests); with lib;
extraGroups = lib.optional config.wheel "wheel"; attrValues (concatMapAttrs (_name: request: request.login-shell.packages) validRequests);
extraGroups = lib.optional config.wheel "wheel";
};
}; };
}; };
}; };
}; };
applications.hello = applications.hello =
@ -151,7 +153,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 = [
@ -160,7 +162,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;
@ -172,7 +174,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

@ -33,7 +33,6 @@ let
inputs.nixops4.modules.nixops4Deployment.default inputs.nixops4.modules.nixops4Deployment.default
{ {
_class = "nixops4Deployment";
_module.args = { _module.args = {
resourceProviderSystem = builtins.currentSystem; resourceProviderSystem = builtins.currentSystem;
resources = { }; resources = { };
@ -78,7 +77,7 @@ in
# and then also rename this to be consistent with the application's resource mapping # and then also rename this to be consistent with the application's resource mapping
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;
}; };
}) })
]; ];