summary refs log tree commit diff stats
path: root/system/settings/hardware/systemd-boot.nix
blob: a1a41f358ff73d0a0239ee3c57d4343a2699ee74 (plain)
1
2
3
4
5
6
7
8
9
{ config, pkgs, ... }:

{ boot.loader.systemd-boot = {
    enable = true;
    editor = false; # Don't allow modification
  };
  boot.loader.efi.canTouchEfiVariables = true;
  boot.earlyVconsoleSetup = true;
}