From 4c4771cb01a6f3577b3792ea7bbd151634c4c0d2 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Thu, 12 Feb 2026 22:04:57 -0600 Subject: [PATCH] rofi: add missing option description Signed-off-by: Austin Horstman --- modules/programs/rofi.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/modules/programs/rofi.nix b/modules/programs/rofi.nix index 7925fac6..92cc6543 100644 --- a/modules/programs/rofi.nix +++ b/modules/programs/rofi.nix @@ -275,8 +275,14 @@ in listOf ( either str (submodule { options = { - name = mkOption { type = str; }; - path = mkOption { type = str; }; + name = mkOption { + type = str; + description = "Name used to reference the custom mode in the mode list."; + }; + path = mkOption { + type = str; + description = "Executable path for the custom rofi script mode."; + }; }; }) );