We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9336aa8 commit 685be77Copy full SHA for 685be77
modules/devshell.nix
@@ -351,6 +351,14 @@ in
351
menu = mkOption {
352
type = types.submodule {
353
options.interpolate = mkEnableOption "interpolation in the devshell menu";
354
+ options.width = mkOption {
355
+ type = types.numbers.positive;
356
+ default = 75;
357
+ description = ''
358
+ Width of the devshell message.
359
+ '';
360
+ example = 75;
361
+ };
362
};
363
default = { };
364
description = ''
@@ -359,6 +367,7 @@ in
367
example = literalExpression ''
368
{
369
interpolate = true;
370
+ width = 75;
371
}
372
'';
373
0 commit comments