Merge pull request #303 from maxeonyx/patch-1

Change doc path for eg. `flake.apps.<name>.<name>.*` to `flake.apps.<system>.<name>.*`
This commit is contained in:
Robert Hensing 2025-08-06 15:36:06 +02:00 committed by GitHub
commit af66ad14b2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -174,7 +174,11 @@ let
options = {
flake = flake-parts-lib.mkSubmoduleOptions {
${name} = mkOption {
type = types.lazyAttrsOf option.type;
type = types.attrsWith {
elemType = option.type;
lazy = true;
placeholder = "system";
};
default = { };
description = ''
See {option}`perSystem.${name}` for description and examples.