From 73b5b2c9f6acd11ab507ffbad31eadc70fd487f9 Mon Sep 17 00:00:00 2001 From: kenji Date: Tue, 23 Dec 2025 12:22:32 -0600 Subject: [PATCH] test --- modules/system/default.nix | 2 +- system/boot.nix | 16 +++++++++++----- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/modules/system/default.nix b/modules/system/default.nix index 0bd88e0..2956e49 100644 --- a/modules/system/default.nix +++ b/modules/system/default.nix @@ -1,7 +1,7 @@ {...}: { imports = [ - ../../system/amd.nix ../../system/boot.nix + ../../system/amd.nix ../../system/hardware.nix ../../system/home-manager.nix ../../system/services.nix diff --git a/system/boot.nix b/system/boot.nix index 1d9c8da..2571d3d 100644 --- a/system/boot.nix +++ b/system/boot.nix @@ -4,14 +4,20 @@ systemd-boot = { enable = true; }; + + efi = { + canTouchEfiVariables = true; + efiSysMountPoint = "/boot"; + }; + + grub = { + enable = false; + device = "nodev"; + }; }; + initrd = { systemd.enable = true; }; - efi = { - canTouchEfiVariables = true; - efiSysMountPoint = "/boot"; - }; - grub.enable = false; }; }