lol

nixos/thelounge: fix example rendering

+10 -8
+10 -8
nixos/modules/services/networking/thelounge.nix
··· 48 48 extraConfig = mkOption { 49 49 default = { }; 50 50 type = types.attrs; 51 - example = literalExpression ''{ 52 - reverseProxy = true; 53 - defaults = { 54 - name = "Your Network"; 55 - host = "localhost"; 56 - port = 6697; 57 - }; 58 - }''; 51 + example = literalExpression '' 52 + { 53 + reverseProxy = true; 54 + defaults = { 55 + name = "Your Network"; 56 + host = "localhost"; 57 + port = 6697; 58 + }; 59 + } 60 + ''; 59 61 description = lib.mdDoc '' 60 62 The Lounge's {file}`config.js` contents as attribute set (will be 61 63 converted to JSON to generate the configuration file).