From e0fb488e57568d338b987992c4832a83a11badaf Mon Sep 17 00:00:00 2001 From: f4814n Date: Tue, 14 Jul 2020 10:17:05 +0200 Subject: [PATCH] sway: Fix output example (#1385) The example for wayland.windowManager.sway.config.output has to contain a mode behind the filename to be correct. --- modules/services/window-managers/i3-sway/sway.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/services/window-managers/i3-sway/sway.nix b/modules/services/window-managers/i3-sway/sway.nix index f0dac2df3..0445e46e2 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. '';