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
Showing only changes of commit 742cafc426 - Show all commits

View file

@ -45,8 +45,10 @@ in
description = "Any options from NixOS";
};
};
config.resource-type = types.raw; # TODO: what's the type of a NixOS configuration?
config.apply = requests: lib.mkMerge (requests ++ [ config.extra-config ]);
config = {
resource-type = types.raw; # TODO: what's the type of a NixOS configuration?
apply = requests: lib.mkMerge (requests ++ [ config.extra-config ]);
};
};
};
resources.login-shell = {
@ -82,8 +84,9 @@ in
default = false;
};
};
config.resource-type = types.raw; # TODO: splice out the user type from NixOS
config.apply =
config = {
resource-type = types.raw; # TODO: splice out the user type from NixOS
apply =
requests:
let
# Filter out requests that need wheel if policy doesn't allow it
@ -102,6 +105,7 @@ in
};
};
};
};
applications.hello =
{ ... }:
{