server/modules/home-info.nix

16 lines
164 B
Nix

{
lib,
...
}:
with lib;
{
options = {
custom.home-info = mkOption {
type = types.submodule {
options = {
};
};
};
};
}