flake-parts: remove unnecessary mkSubmoduleOptions

This is no longer necessary as of https://github.com/NixOS/nixpkgs/pull/156533.
This commit is contained in:
Michael Hoang
2025-04-08 18:03:26 +02:00
parent 99589c1141
commit 69141d02d9

View File

@@ -2,7 +2,6 @@ clan-core:
{ {
config, config,
lib, lib,
flake-parts-lib,
self, self,
inputs, inputs,
... ...
@@ -44,12 +43,10 @@ in
}; };
}; };
options.flake = flake-parts-lib.mkSubmoduleOptions ( options.flake = {
{
clan = lib.mkOption { type = types.raw; }; clan = lib.mkOption { type = types.raw; };
} } // outputModule.topLevel.options;
// outputModule.topLevel.options
);
config = { config = {
flake = { flake = {
clan = outputModule.clan; clan = outputModule.clan;