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 {
type = optionType;
readOnly = true;
default = functionTo (
submodule (function: {
options = {
input = mkOption {
type = submodule config.input-type;
};
output = mkOption {
type = submodule config.output-type;
};
default = functionTo (submodule {
options = {
input = mkOption {
type = submodule config.input-type;
};
})
);
output = mkOption {
type = submodule config.output-type;
};
};
});
};
};
}