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,8 +22,7 @@ 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;
@ -32,8 +31,7 @@ in
type = submodule config.output-type; type = submodule config.output-type;
}; };
}; };
}) });
);
}; };
}; };
} }