From 2a66fcb6148b61c259e6661176f36f8fd9de4e57 Mon Sep 17 00:00:00 2001 From: Noa Aarts Date: Tue, 17 Sep 2024 11:04:48 +0200 Subject: [PATCH] fix: format boot --- common/boot.nix | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/common/boot.nix b/common/boot.nix index 718d776..55dc5f4 100644 --- a/common/boot.nix +++ b/common/boot.nix @@ -1,12 +1,12 @@ -{lib,...}: +{ lib, ... }: { - boot.loader = { - timeout = lib.mkDefault 0; - efi.canTouchEfiVariables = true; - systemd-boot = { - enable = true; - editor = false; - configurationLimit = 100; - }; - }; + boot.loader = { + timeout = lib.mkDefault 0; + efi.canTouchEfiVariables = true; + systemd-boot = { + enable = true; + editor = false; + configurationLimit = 100; + }; + }; }