rofi: add missing option description

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
Austin Horstman 2026-02-12 22:04:57 -06:00
parent 3017414609
commit 4c4771cb01

View file

@ -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.";
};
};
})
);