From 1754c2cb69c0b2224118ffd15dbe6257a9fa6d58 Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Sun, 24 Mar 2024 12:27:14 -0500 Subject: [PATCH] refactor boot --- hosts/othalan/system.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hosts/othalan/system.nix b/hosts/othalan/system.nix index 9d659da..a2d9704 100644 --- a/hosts/othalan/system.nix +++ b/hosts/othalan/system.nix @@ -42,10 +42,10 @@ in { networking.hostName = "othalan"; time.timeZone = "US/Central"; - boot.loader.systemd-boot.enable = true; - boot.loader.systemd-boot.consoleMode = "max"; - boot.loader.efi.canTouchEfiVariables = true; - # boot.kernelPackages = pkgs.linuxPackages_latest; + boot.loader = { + systemd-boot ={ enable = true; consoleMode = "max";}; + efi.canTouchEfiVariables = true; + }; # don't delete this you foo bar system.stateVersion = "23.11"; # Did you read the comment?