Simplify option evaluation

This commit is contained in:
Manuel Thalmann 2024-05-15 17:22:34 +02:00
parent 097a871b75
commit 5d88c33a3a

View file

@ -52,7 +52,7 @@ let
providerOptions = lib.mkOption {
description = "The options of the sync";
type = lib.types.submodule { inherit (provider config) options; };
default = {};
default = { };
};
systemdDependencies = mkSystemdDependencyOption {
@ -78,16 +78,13 @@ let
};
};
config =
let
syncProvider = syncProviders.${config.type} config;
in {
inherit (syncProvider)
environment
secretsScript
config
;
};
config = {
inherit (provider (lib.debug.traceVal config))
environment
secretsScript
config
;
};
});
in {
options = {