format and remove unused argument for linter

This commit is contained in:
Kiara Grouwstra 2025-07-06 13:03:01 +02:00
parent a4a106ef97
commit e2ce104919
Signed by: kiara
SSH key fingerprint: SHA256:COspvLoLJ5WC5rFb9ZDe5urVCkK4LJZOsjfF4duRJFU

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;
};
};
});
};
};
}