format and remove unused argument for linter

This commit is contained in:
Kiara Grouwstra 2025-07-06 13:03:01 +02:00 committed by kiara Grouwstra
parent 086cb4fdfd
commit 0780c092df

View file

@ -22,18 +22,16 @@ in
function-type = mkOption { function-type = mkOption {
type = optionType; type = optionType;
readOnly = true; readOnly = true;
default = functionTo ( default = functionTo (submodule {
submodule (function: { options = {
options = { input = mkOption {
input = mkOption { type = submodule config.input-type;
type = submodule config.input-type;
};
output = mkOption {
type = submodule config.output-type;
};
}; };
}) output = mkOption {
); type = submodule config.output-type;
};
};
});
}; };
}; };
} }