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