mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
35 lines
755 B
Nix
35 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"
|
|
];
|
|
|
|
};
|
|
|
|
}
|