sway: Fix output example (#1385)

The example for wayland.windowManager.sway.config.output has to
contain a mode behind the filename to be correct.
This commit is contained in:
f4814n 2020-07-14 10:17:05 +02:00 committed by GitHub
parent 05565a0145
commit e0fb488e57
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -160,7 +160,7 @@ let
output = mkOption { output = mkOption {
type = types.attrsOf (types.attrsOf types.str); type = types.attrsOf (types.attrsOf types.str);
default = { }; default = { };
example = { "HDMI-A-2" = { bg = "~/path/to/background.png"; }; }; example = { "HDMI-A-2" = { bg = "~/path/to/background.png fill"; }; };
description = '' description = ''
An attribute set that defines output modules. See man sway_output for options. An attribute set that defines output modules. See man sway_output for options.
''; '';