From 880447997b288c075fd4acbef459a79cfed53dce Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Fri, 23 Aug 2024 19:02:06 +0200 Subject: [PATCH] Refactor option descriptions --- lib/modules/os.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/modules/os.nix b/lib/modules/os.nix index 15783edf..e855a74a 100644 --- a/lib/modules/os.nix +++ b/lib/modules/os.nix @@ -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"; };