mirror of
https://github.com/nix-community/home-manager
synced 2024-11-27 05:29:46 +01:00
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:
parent
05565a0145
commit
e0fb488e57
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in a new issue