feat: Rihla | add secure boot and impermanence options

This commit is contained in:
2025-02-16 19:33:15 +05:00
parent ecce02959b
commit f335ca5c52
2 changed files with 43 additions and 9 deletions

View File

@@ -40,7 +40,12 @@
description = "The home directory of the user";
default = "/home/${config.hostSpec.username}";
};
impermenance = lib.mkOption {
secureBoot = lib.mkOption {
type = lib.types.bool;
description = "Whether or not secure boot has been enabled";
default = false;
};
impermanance = lib.mkOption {
type = lib.types.bool;
description = "Whether or not to enable impermenance";
default = false;