From 1403c2423100e014aae95c2a02191445d9e8b647 Mon Sep 17 00:00:00 2001 From: Alexander Kassouni Date: Sun, 27 Sep 2026 00:32:26 -0700 Subject: undo port --- configuration.nix | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'configuration.nix') diff --git a/configuration.nix b/configuration.nix index 137e2f4..d744b6f 100644 --- a/configuration.nix +++ b/configuration.nix @@ -1,4 +1,4 @@ -{config, lib, pkgs, ...}: { +{config, ...}: { imports = [ ./hardware-configuration.nix ./minecraft.nix @@ -6,8 +6,14 @@ ./git.nix ./ssh.nix ]; - boot.loader.systemd-boot.enable = true; - boot.loader.efi.canTouchEfiVariables = true; + + boot.loader = { + systemd-boot = { + enable = true; + graceful = true; # TODO: drop after v261+ + }; + efi.canTouchEfiVariables = true; + }; networking.networkmanager.enable = true; -- cgit v1.3.1