summaryrefslogtreecommitdiffstats
path: root/nixos/modules/system/boot/plymouth.nix
blob: f4923c55e149feac66d87444f73b48aa66bd4dcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
{
  config,
  lib,
  options,
  pkgs,
  ...
}:

let
  inherit (lib)
    mkOption
    mkEnableOption
    optional
    mkIf
    mkBefore
    mkAfter
    literalExpression
    types
    literalMD
    getExe'
    escapeShellArg
    ;

  cfg = config.boot.plymouth;
  opt = options.boot.plymouth;

  nixosBreezePlymouth = pkgs.kdePackages.breeze-plymouth.override {
    logoFile = cfg.logo;
    logoName = "nixos";
    osName = config.system.nixos.distroName;
    osVersion = config.system.nixos.release;
  };

  plymouthLogos = pkgs.runCommand "plymouth-logos" { inherit (cfg) logo; } ''
    mkdir -p $out

    # For themes that are compiled with PLYMOUTH_LOGO_FILE
    mkdir -p $out/etc/plymouth
    ln -s $logo $out/etc/plymouth/logo.png

    # Logo for bgrt theme
    # Note this is technically an abuse of watermark for the bgrt theme
    # See: https://gitlab.freedesktop.org/plymouth/plymouth/-/issues/95#note_813768
    mkdir -p $out/share/plymouth/themes/spinner
    ln -s $logo $out/share/plymouth/themes/spinner/watermark.png

    # Logo for spinfinity theme
    # See: https://gitlab.freedesktop.org/plymouth/plymouth/-/issues/106
    mkdir -p $out/share/plymouth/themes/spinfinity
    ln -s $logo $out/share/plymouth/themes/spinfinity/header-image.png

    # Logo for catppuccin (two-step) theme
    for flavour in mocha macchiato latte frappe
    do
      mkdir -p $out/share/plymouth/themes/catppuccin-"$flavour"
      ln -s $logo $out/share/plymouth/themes/catppuccin-"$flavour"/header-image.png
    done
  '';

  themesEnv = pkgs.buildEnv {
    name = "plymouth-themes";
    paths = [
      cfg.package
      plymouthLogos
    ]
    ++ cfg.themePackages;
  };

  configFile = pkgs.writeText "plymouthd.conf" ''
    [Daemon]
    ShowDelay=${toString cfg.showDelay}
    DeviceTimeout=8
    Theme=${cfg.theme}
    ${cfg.extraConfig}
  '';

  checkIfThemeExists = ''
    # Check if the actual requested theme is here
    if [[ ! -d ${themesEnv}/share/plymouth/themes/${cfg.theme} ]]; then
        echo "The requested theme: ${cfg.theme} is not provided by any of the packages in boot.plymouth.themePackages"
        echo "The following themes exist: $(ls ${themesEnv}/share/plymouth/themes/)"
        exit 1
    fi
  '';

  # 'emergency.serivce' and 'rescue.service' have
  # 'ExecStartPre=-plymouth quit --wait', but 'plymouth' is not on
  # their 'ExecSearchPath'. We could set 'ExecSearchPath', but it
  # overrides 'DefaultEnvironment=PATH=...', which is trouble for the
  # initrd shell. It's simpler to just reset 'ExecStartPre' with an
  # empty string and then set it to exactly what we want.
  preStartQuitFixup = {
    serviceConfig.ExecStartPre = [
      ""
      "${getExe' cfg.package "plymouth"} quit --wait"
    ];
  };

in

{

  options = {

    boot.plymouth = {

      enable = mkEnableOption "Plymouth boot splash screen";

      package = mkOption {
        description = "The plymouth package to use.";
        type = types.package;
        default = pkgs.plymouth.override {
          systemd = config.boot.initrd.systemd.package;
        };
        defaultText = literalExpression ''
          pkgs.plymouth.override {
            systemd = config.boot.initrd.systemd.package;
          }
        '';
      };

      font = mkOption {
        default = "${pkgs.dejavu_fonts.minimal}/share/fonts/truetype/DejaVuSans.ttf";
        defaultText = literalExpression ''"''${pkgs.dejavu_fonts.minimal}/share/fonts/truetype/DejaVuSans.ttf"'';
        type = types.path;
        description = ''
          Font file made available for displaying text on the splash screen.
        '';
      };

      themePackages = mkOption {
        default = optional (cfg.theme == "breeze") nixosBreezePlymouth;
        defaultText = literalMD ''
          A NixOS branded variant of the breeze theme when
          `config.${opt.theme} == "breeze"`, otherwise
          `[ ]`.
        '';
        type = types.listOf types.package;
        description = ''
          Extra theme packages for plymouth.
        '';
      };

      theme = mkOption {
        default = "bgrt";
        type = types.str;
        description = ''
          Splash screen theme.
        '';
      };

      logo = mkOption {
        type = types.path;
        # Dimensions are 48x48 to match GDM logo
        default = "${pkgs.nixos-icons}/share/icons/hicolor/48x48/apps/nix-snowflake-white.png";
        defaultText = literalExpression ''"''${pkgs.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";
          }
        '';
        description = ''
          Logo which is displayed on the splash screen.
          Currently supports PNG file format only.
        '';
      };

      showDelay = mkOption {
        type = types.numbers.nonnegative;
        default = 0;
        example = 0.5;
        description = ''
          Time (in seconds) to delay the splash screen.
        '';
      };

      extraConfig = mkOption {
        type = types.lines;
        default = "";
        description = ''
          Literal string to append to `configFile`
          and the config file generated by the plymouth module.
        '';
      };

    };

  };

  config = mkIf cfg.enable {

    boot.kernelParams = [ "splash" ];

    # To be discoverable by systemd.
    environment.systemPackages = [ cfg.package ];

    environment.etc."plymouth/plymouthd.conf".source = configFile;
    environment.etc."plymouth/plymouthd.defaults".source =
      "${cfg.package}/share/plymouth/plymouthd.defaults";
    environment.etc."plymouth/logo.png".source = cfg.logo;
    environment.etc."plymouth/themes".source = "${themesEnv}/share/plymouth/themes";
    # XXX: Needed because we supply a different set of plugins in initrd.
    environment.etc."plymouth/plugins".source = "${cfg.package}/lib/plymouth";

    systemd.tmpfiles.rules = [
      "d /run/plymouth 0755 root root 0 -"
      "L+ /run/plymouth/plymouthd.defaults - - - - /etc/plymouth/plymouthd.defaults"
      "L+ /run/plymouth/themes - - - - /etc/plymouth/themes"
      "L+ /run/plymouth/plugins - - - - /etc/plymouth/plugins"
    ];

    systemd.packages = [ cfg.package ];

    systemd.services.plymouth-kexec.wantedBy = [ "kexec.target" ];
    systemd.services.plymouth-halt.wantedBy = [ "halt.target" ];
    systemd.services.plymouth-quit-wait.wantedBy = [ "multi-user.target" ];
    systemd.services.plymouth-quit.wantedBy = [ "multi-user.target" ];
    systemd.services.plymouth-poweroff.wantedBy = [ "poweroff.target" ];
    systemd.services.plymouth-reboot.wantedBy = [ "reboot.target" ];
    systemd.services.plymouth-read-write.wantedBy = [ "sysinit.target" ];
    systemd.services.systemd-ask-password-plymouth.wantedBy = [ "sysinit.target" ];
    systemd.paths.systemd-ask-password-plymouth.wantedBy = [ "sysinit.target" ];

    # Prevent Plymouth taking over the screen during system updates.
    systemd.services.plymouth-start.restartIfChanged = false;

    systemd.services.rescue = preStartQuitFixup;
    systemd.services.emergency = preStartQuitFixup;

    boot.initrd.systemd = {
      extraBin.plymouth = getExe' cfg.package "plymouth"; # for the recovery shell
      storePaths = [
        (getExe' config.boot.initrd.systemd.package "systemd-tty-ask-password-agent")
        (getExe' cfg.package "plymouthd")
        "${cfg.package}/sbin/plymouthd"
      ];
      packages = [ cfg.package ]; # systemd units

      services.rescue = preStartQuitFixup;
      services.emergency = preStartQuitFixup;

      contents = {
        # Files
        "/etc/plymouth/plymouthd.conf".source = configFile;
        "/etc/plymouth/logo.png".source = cfg.logo;
        "/etc/plymouth/plymouthd.defaults".source = "${cfg.package}/share/plymouth/plymouthd.defaults";
        # Directories
        "/etc/plymouth/plugins".source = pkgs.runCommand "plymouth-initrd-plugins" { } (
          checkIfThemeExists
          + ''
            moduleName="$(sed -n 's,ModuleName *= *,,p' ${themesEnv}/share/plymouth/themes/${cfg.theme}/${cfg.theme}.plymouth)"

            mkdir -p $out/renderers
            # module might come from a theme
            cp ${themesEnv}/lib/plymouth/*.so $out
            cp ${cfg.package}/lib/plymouth/renderers/*.so $out/renderers
            # useless in the initrd, and adds several megabytes to the closure
            rm $out/renderers/x11.so
          ''
        );
        "/etc/plymouth/themes".source = pkgs.runCommand "plymouth-initrd-themes" { } (
          checkIfThemeExists
          + ''
            mkdir -p $out/${cfg.theme}
            cp -r ${themesEnv}/share/plymouth/themes/${cfg.theme}/* $out/${cfg.theme}
            # Copy more themes if the theme depends on others
            for theme in $(grep -hRo '/share/plymouth/themes/.*$' $out | xargs -n1 basename); do
                if [[ -d "${themesEnv}/share/plymouth/themes/$theme" ]]; then
                    if [[ ! -d "$out/$theme" ]]; then
                      echo "Adding dependent theme: $theme"
                      mkdir -p "$out/$theme"
                      cp -r "${themesEnv}/share/plymouth/themes/$theme"/* "$out/$theme"
                    fi
                else
                  echo "Missing theme dependency: $theme"
                fi
            done
            # Fixup references
            for theme in $out/*/*.plymouth; do
              sed -i "s,${builtins.storeDir}/.*/share/plymouth/themes,$out," "$theme"
            done
          ''
        );

        # Fonts
        "/etc/plymouth/fonts".source = pkgs.runCommand "plymouth-initrd-fonts" { } ''
          mkdir -p $out
          cp ${escapeShellArg cfg.font} $out
        '';
        "/etc/fonts/fonts.conf".text = ''
          <?xml version="1.0"?>
          <!DOCTYPE fontconfig SYSTEM "urn:fontconfig:fonts.dtd">
          <fontconfig>
              <dir>/etc/plymouth/fonts</dir>
          </fontconfig>
        '';
      };
      # Properly enable units. These are the units that arch copies
      services = {
        plymouth-halt.wantedBy = [ "halt.target" ];
        plymouth-kexec.wantedBy = [ "kexec.target" ];
        plymouth-poweroff.wantedBy = [ "poweroff.target" ];
        plymouth-quit-wait.wantedBy = [ "multi-user.target" ];
        plymouth-quit.wantedBy = [ "multi-user.target" ];
        plymouth-read-write.wantedBy = [ "sysinit.target" ];
        plymouth-reboot.wantedBy = [ "reboot.target" ];
        plymouth-start.wantedBy = [
          "initrd-switch-root.target"
          "sysinit.target"
        ];
        plymouth-switch-root-initramfs.wantedBy = [
          "halt.target"
          "kexec.target"
          "plymouth-switch-root-initramfs.service"
          "poweroff.target"
          "reboot.target"
        ];
        plymouth-switch-root.wantedBy = [ "initrd-switch-root.target" ];
      };
      # Link in runtime files before starting
      services.plymouth-start.preStart = ''
        mkdir -p /run/plymouth
        ln -sf /etc/plymouth/{plymouthd.defaults,themes,plugins} /run/plymouth/
      '';
    };

    # Insert required udev rules. We take stage 2 systemd because the udev
    # rules are only generated when building with logind.
    boot.initrd.services.udev.packages = [
      (pkgs.runCommand "initrd-plymouth-udev-rules" { } ''
        mkdir -p $out/etc/udev/rules.d
        cp ${config.systemd.package.out}/lib/udev/rules.d/{70-uaccess,71-seat}.rules $out/etc/udev/rules.d
        sed -i '/loginctl/d' $out/etc/udev/rules.d/71-seat.rules
      '')
    ];

    boot.initrd.extraUtilsCommands = mkIf (!config.boot.initrd.systemd.enable) (
      ''
        copy_bin_and_libs ${getExe' cfg.package "plymouth"}
        copy_bin_and_libs ${getExe' cfg.package "plymouthd"}

      ''
      + checkIfThemeExists
      + ''

        moduleName="$(sed -n 's,ModuleName *= *,,p' ${themesEnv}/share/plymouth/themes/${cfg.theme}/${cfg.theme}.plymouth)"

        mkdir -p $out/lib/plymouth/renderers
        # module might come from a theme
        cp ${themesEnv}/lib/plymouth/*.so $out/lib/plymouth
        cp ${cfg.package}/lib/plymouth/renderers/*.so $out/lib/plymouth/renderers
        # useless in the initrd, and adds several megabytes to the closure
        rm $out/lib/plymouth/renderers/x11.so

        mkdir -p $out/share/plymouth/themes
        cp ${cfg.package}/share/plymouth/plymouthd.defaults $out/share/plymouth

        # Copy themes into working directory for patching
        mkdir themes

        # Use -L to copy the directories proper, not the symlinks to them.
        # Copy all themes because they're not large assets, and bgrt depends on the ImageDir of
        # the spinner theme.
        cp -r -L ${themesEnv}/share/plymouth/themes/* themes

        # Patch out any attempted references to the theme or plymouth's themes directory
        chmod -R +w themes
        find themes -type f | while read file
        do
          sed -i "s,${builtins.storeDir}/.*/share/plymouth/themes,$out/share/plymouth/themes,g" $file
        done

        # Install themes
        cp -r themes/* $out/share/plymouth/themes

        # Install logo
        mkdir -p $out/etc/plymouth
        cp -r -L ${themesEnv}/etc/plymouth $out/etc

        # Setup font
        mkdir -p $out/share/fonts
        cp ${cfg.font} $out/share/fonts
        mkdir -p $out/etc/fonts
        cat > $out/etc/fonts/fonts.conf <<EOF
        <?xml version="1.0"?>
        <!DOCTYPE fontconfig SYSTEM "urn:fontconfig:fonts.dtd">
        <fontconfig>
            <dir>$out/share/fonts</dir>
        </fontconfig>
        EOF
      ''
    );

    boot.initrd.extraUtilsCommandsTest = mkIf (!config.boot.initrd.systemd.enable) ''
      $out/bin/plymouthd --help >/dev/null
      $out/bin/plymouth --help >/dev/null
    '';

    boot.initrd.extraUdevRulesCommands = mkIf (!config.boot.initrd.systemd.enable) ''
      cp ${config.systemd.package}/lib/udev/rules.d/{70-uaccess,71-seat}.rules $out
      sed -i '/loginctl/d' $out/71-seat.rules
    '';

    # We use `mkAfter` to ensure that LUKS password prompt would be shown earlier than the splash screen.
    boot.initrd.preLVMCommands = mkIf (!config.boot.initrd.systemd.enable) (mkAfter ''
      plymouth_enabled=1
      for o in $(cat /proc/cmdline); do
          case $o in
              plymouth.enable=0)
                  plymouth_enabled=0
                  ;;
          esac
      done

      if [ "$plymouth_enabled" != 0 ]; then
        mkdir -p /etc/plymouth
        mkdir -p /run/plymouth
        ln -s $extraUtils/etc/plymouth/logo.png /etc/plymouth/logo.png
        ln -s ${configFile} /etc/plymouth/plymouthd.conf
        ln -s $extraUtils/share/plymouth/plymouthd.defaults /run/plymouth/plymouthd.defaults
        ln -s $extraUtils/share/plymouth/themes /run/plymouth/themes
        ln -s $extraUtils/lib/plymouth /run/plymouth/plugins
        ln -s $extraUtils/etc/fonts /etc/fonts

        plymouthd --mode=boot --pid-file=/run/plymouth/pid --attach-to-session
        plymouth show-splash
      fi
    '');

    boot.initrd.postMountCommands = mkIf (!config.boot.initrd.systemd.enable) ''
      if [ "$plymouth_enabled" != 0 ]; then
        plymouth update-root-fs --new-root-dir="$targetRoot"
      fi
    '';

    # `mkBefore` to ensure that any custom prompts would be visible.
    boot.initrd.preFailCommands = mkIf (!config.boot.initrd.systemd.enable) (mkBefore ''
      if [ "$plymouth_enabled" != 0 ]; then
        plymouth quit --wait
      fi
    '');

  };

}