summary refs log tree commit diff
path: root/nixos/modules/system/boot/emergency-mode.nix
blob: ec697bcee2680e2f6236f8df7dfc57003cfd930a (plain) (blame)
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
{ config, lib, ... }:

with lib;

{

  ###### interface

  options = {

    systemd.enableEmergencyMode = mkOption {
      default = true;
      type = types.bool;
      description = ''
        Whether to enable emergency mode, which is an
        <command>sulogin</command> shell started on the console if
        mounting a filesystem fails.  Since some machines (like EC2
        instances) have no console of any kind, emergency mode doesn't
        make sense, and it's better to continue with the boot insofar
        as possible.
      '';
    };

  };

  ###### implementation

  config = {

    systemd.additionalUpstreamSystemUnits = optionals
      config.systemd.enableEmergencyMode [
        "emergency.target" "emergency.service"
      ];

  };

}