From 04264ed4a554189be73209dbdd6feaf23283747a Mon Sep 17 00:00:00 2001 From: Inex Code Date: Fri, 25 Jul 2025 12:40:49 +0300 Subject: [PATCH] feat: Add rootPartitionName option to userdata --- selfprivacy-module.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/selfprivacy-module.nix b/selfprivacy-module.nix index 0090e74..70dd3f8 100644 --- a/selfprivacy-module.nix +++ b/selfprivacy-module.nix @@ -102,6 +102,11 @@ with lib; type = types.nullOr types.str; default = null; }; + rootPartitionName = mkOption { + description = "Canonical root partition name."; + type = types.nullOr types.str; + default = null; + }; }; ######### # SSH #