1
0
Fork 0
selfhostblocks/modules/contracts/mount.nix

12 lines
199 B
Nix
Raw Permalink Normal View History

2024-08-07 23:24:14 +02:00
{ lib, ... }:
lib.types.submodule {
freeformType = lib.types.anything;
options = {
path = lib.mkOption {
type = lib.types.str;
description = "Path to be mounted.";
};
};
}