aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorf4814n <me@f4814n.de>2020-07-14 10:17:05 +0200
committerGitHub <noreply@github.com>2020-07-14 09:17:05 +0100
commite0fb488e57568d338b987992c4832a83a11badaf (patch)
tree0efce99c98d37ac6232a1e49e846dcf830288285 /modules
parent05565a0145877376489f08be9639bdfea112a054 (diff)
sway: Fix output example (#1385)
The example for wayland.windowManager.sway.config.output has to contain a mode behind the filename to be correct.
Diffstat (limited to 'modules')
-rw-r--r--modules/services/window-managers/i3-sway/sway.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/services/window-managers/i3-sway/sway.nix b/modules/services/window-managers/i3-sway/sway.nix
index f0dac2df3eb..0445e46e2d2 100644
--- a/modules/services/window-managers/i3-sway/sway.nix
+++ b/modules/services/window-managers/i3-sway/sway.nix
@@ -160,7 +160,7 @@ let
output = mkOption {
type = types.attrsOf (types.attrsOf types.str);
default = { };
- example = { "HDMI-A-2" = { bg = "~/path/to/background.png"; }; };
+ example = { "HDMI-A-2" = { bg = "~/path/to/background.png fill"; }; };
description = ''
An attribute set that defines output modules. See man sway_output for options.
'';