From a87f397770f81bacb1cd6913bd7f333aacceef4f Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Mon, 1 Apr 2024 13:18:07 +0100 Subject: [PATCH] Add boot limit --- machines/talos/configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/machines/talos/configuration.nix b/machines/talos/configuration.nix index 2bab3a0..0ccf50b 100644 --- a/machines/talos/configuration.nix +++ b/machines/talos/configuration.nix @@ -18,6 +18,8 @@ # Use the systemd-boot EFI boot loader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; + boot.loader.systemd-boot.configurationLimit = 2; + networking.hostName = "talos"; networking.networkmanager.enable = true;