Add descriptions to settings

This commit is contained in:
Manuel Thalmann 2024-05-02 13:14:04 +02:00
parent bea09f2582
commit 9e3fad7501

View file

@ -5,15 +5,18 @@
users.sopsPasswordOverride = { users.sopsPasswordOverride = {
enable = lib.mkEnableOption "sops password override" // { enable = lib.mkEnableOption "sops password override" // {
default = false; default = false;
description = "Enable overwriting `sops-nix` passwords with default password.";
}; };
password = lib.mkOption { password = lib.mkOption {
type = lib.types.nullOr (lib.types.passwdEntry lib.types.str); type = lib.types.nullOr (lib.types.passwdEntry lib.types.str);
description = "The password to set for users which are supposed to use `sops-nix`.";
default = null; default = null;
}; };
hashedPassword = lib.mkOption { hashedPassword = lib.mkOption {
type = lib.types.nullOr (lib.types.passwdEntry lib.types.str); type = lib.types.nullOr (lib.types.passwdEntry lib.types.str);
description = "The hashed password to set for users which are supposed to use `sops-nix`.";
default = null; default = null;
}; };
}; };