server/modules/program.nix
Jana Dönszelmann d9d4e43c35
Some checks failed
/ lint (push) Failing after 36s
finally share with ragdoll
2026-03-16 10:18:32 +01:00

25 lines
411 B
Nix

inputs@{
lib,
options,
machine,
...
}:
with lib;
{
options = {
custom.program = mkOption {
type = types.attrsOf (
types.submodule (_: {
options = {
name = mkOption {
type = types.string;
};
defered-config = mkOption {
type = types.deferredModule;
};
};
})
);
};
};
}