Merge pull request 'user-password: set prompt to true by default' (#1399) from a-kenji-user-password/on-by-default into main

This commit is contained in:
clan-bot
2024-05-22 10:19:04 +00:00

View File

@@ -13,8 +13,8 @@
}; };
prompt = lib.mkOption { prompt = lib.mkOption {
type = lib.types.bool; type = lib.types.bool;
default = false; default = true;
example = true; example = false;
description = "Whether the user should be prompted."; description = "Whether the user should be prompted.";
}; };
}; };