From 080f4ec67813527fd0e3a6a3701a4ba1eb2335f6 Mon Sep 17 00:00:00 2001 From: biscuit Date: Mon, 30 Jun 2025 13:08:05 -0500 Subject: [PATCH] added BOOT --- modules/system.nix | 1 + system/boot.nix | 14 ++++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 system/boot.nix diff --git a/modules/system.nix b/modules/system.nix index a521fc7..5acf820 100644 --- a/modules/system.nix +++ b/modules/system.nix @@ -8,5 +8,6 @@ ../system/services.nix ../system/tty.nix ../system/firewall.nix + ../system/boot.nix ]; } diff --git a/system/boot.nix b/system/boot.nix new file mode 100644 index 0000000..3033af7 --- /dev/null +++ b/system/boot.nix @@ -0,0 +1,14 @@ +{...}: { + boot.loader = { + systemd-boot = { + enable = false; + }; + efi = { + canTouchEfiVariables = true; + }; + grub = { + enable = true; + device = "nodev"; + }; + }; +}