From d7d493ddf2a01349f1b6ae7719b8b2a02bb4c2ae Mon Sep 17 00:00:00 2001 From: Joshua Yuen Date: Tue, 29 Jul 2025 13:32:16 -0400 Subject: [PATCH] Add boot options --- modules/core/boot.nix | 9 +++++++++ modules/core/default.nix | 2 ++ 2 files changed, 11 insertions(+) create mode 100644 modules/core/boot.nix diff --git a/modules/core/boot.nix b/modules/core/boot.nix new file mode 100644 index 0000000..ceb614f --- /dev/null +++ b/modules/core/boot.nix @@ -0,0 +1,9 @@ +{ + ... +}: +{ + boot = { + loader.systemd-boot.enable = true; + loader.efi.canTouchEfiVariables = true; + }; +} \ No newline at end of file diff --git a/modules/core/default.nix b/modules/core/default.nix index 45d75eb..c76bce9 100644 --- a/modules/core/default.nix +++ b/modules/core/default.nix @@ -4,6 +4,8 @@ }: { imports = [ + ./boot.nix + ./firefox.nix ./fonts.nix ./gdm.nix ./hyprland.nix