nixos-config/modules/system/devices/boot/systemd/default.nix

7 lines
151 B
Nix

{ config, lib, ... }:
{
boot.loader.systemd-boot = lib.mkIf config.boot.loader.systemd-boot.enable {
editor = false;
graceful = true;
};
}