depot/third_party/nixpkgs/nixos/modules/system/boot/emergency-mode.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

34 lines
755 B
Nix

{ config, lib, ... }:
{
###### interface
options = {
systemd.enableEmergencyMode = lib.mkOption {
default = true;
type = lib.types.bool;
description = ''
Whether to enable emergency mode, which is an
{command}`sulogin` 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 = lib.optionals
config.systemd.enableEmergencyMode [
"emergency.target" "emergency.service"
];
};
}