1
0
Fork 0
selfhostblocks/modules/contracts/mount.nix
2024-08-12 06:51:24 -07:00

11 lines
199 B
Nix

{ lib, ... }:
lib.types.submodule {
freeformType = lib.types.anything;
options = {
path = lib.mkOption {
type = lib.types.str;
description = "Path to be mounted.";
};
};
}