Refactor option descriptions

This commit is contained in:
Manuel Thalmann 2024-08-23 19:02:06 +02:00
parent 0396b9f6a3
commit de8f7cc9f0

View file

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