summary refs log tree commit diff stats
path: root/system/settings/hardware/systemd-boot.nix
blob: 9793cf66d9d800143cb42f1d140ad53e46982d6a (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;
  console.earlySetup = true;
}