From 99ac96511bed17f48d908db3d00a1f48579ba011 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Tue, 12 Aug 2025 04:38:45 +0900 Subject: hst/fs: interface filesystem config This allows mount points to be represented by different underlying structs. Signed-off-by: Ophestra --- options.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'options.nix') diff --git a/options.nix b/options.nix index c6772f69..d5d82496 100644 --- a/options.nix +++ b/options.nix @@ -7,6 +7,7 @@ let mountPoint = let inherit (types) + enum str submodule nullOr @@ -15,6 +16,14 @@ let in listOf (submodule { options = { + type = mkOption { + type = enum [ "bind" ]; + default = "bind"; + description = '' + Type of the mount point; + ''; + }; + dst = mkOption { type = nullOr str; default = null; @@ -32,7 +41,7 @@ let write = mkEnableOption "mounting path as writable"; dev = mkEnableOption "use of device files"; - require = mkEnableOption "start failure if the bind mount cannot be established for any reason"; + optional = mkEnableOption "ignore nonexistent source path"; }; }); in -- cgit v1.3.1