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,8 +22,7 @@ in
function-type = mkOption {
type = optionType;
readOnly = true;
default = functionTo (
submodule (function: {
default = functionTo (submodule {
options = {
input = mkOption {
type = submodule config.input-type;
@ -32,8 +31,7 @@ in
type = submodule config.output-type;
};
};
})
);
});
};
};
}