about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorLily Foster <lily@lily.flowers>2023-07-09 02:31:05 -0400
committerLily Foster <lily@lily.flowers>2023-07-09 02:31:05 -0400
commit5c1583bfd754ea6a668d2b76efef855201aa3ea8 (patch)
treefeb8167d2e19ee96128731cdf09f54c09f3343f5 /nixos
parentdc99434f4f17f718ef70f6e5fbfa3145ccd285fe (diff)
nixos/plymouth: fix minor doc rendering issue
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/system/boot/plymouth.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/nixos/modules/system/boot/plymouth.nix b/nixos/modules/system/boot/plymouth.nix
index a63f349389951..b041b8951fa37 100644
--- a/nixos/modules/system/boot/plymouth.nix
+++ b/nixos/modules/system/boot/plymouth.nix
@@ -99,10 +99,12 @@ in
         # Dimensions are 48x48 to match GDM logo
         default = "${nixos-icons}/share/icons/hicolor/48x48/apps/nix-snowflake-white.png";
         defaultText = literalExpression ''"''${nixos-icons}/share/icons/hicolor/48x48/apps/nix-snowflake-white.png"'';
-        example = literalExpression ''pkgs.fetchurl {
-          url = "https://nixos.org/logo/nixos-hires.png";
-          sha256 = "1ivzgd7iz0i06y36p8m5w48fd8pjqwxhdaavc0pxs7w1g7mcy5si";
-        }'';
+        example = literalExpression ''
+          pkgs.fetchurl {
+            url = "https://nixos.org/logo/nixos-hires.png";
+            sha256 = "1ivzgd7iz0i06y36p8m5w48fd8pjqwxhdaavc0pxs7w1g7mcy5si";
+          }
+        '';
         description = lib.mdDoc ''
           Logo which is displayed on the splash screen.
         '';