model: deadnix

This commit is contained in:
Kiara Grouwstra 2025-07-19 12:15:52 +02:00
parent 63c200f837
commit 015ea16475
Signed by: kiara
SSH key fingerprint: SHA256:COspvLoLJ5WC5rFb9ZDe5urVCkK4LJZOsjfF4duRJFU

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