Refactor option descriptions

This commit is contained in:
Manuel Thalmann 2024-08-23 19:02:06 +02:00
parent 1264202a88
commit 020e592065

View file

@ -17,14 +17,14 @@
options = {
linux = mkOption {
inherit (linuxVariant) type;
description = "The Linux specific configuration.";
description = "The options for setting up Linux.";
default = {};
visible = "shallow";
};
windows = mkOption {
inherit (windowsVariant) type;
description = "The Windows specific configuration.";
description = "The options for setting up Windows.";
default = {};
visible = "shallow";
};