Add boot options

This commit is contained in:
Joshua Yuen 2025-07-29 13:32:16 -04:00
parent 4c1e1f569d
commit d7d493ddf2
Signed by: josh
GPG Key ID: 502720BC22ED411C
2 changed files with 11 additions and 0 deletions

9
modules/core/boot.nix Normal file
View File

@ -0,0 +1,9 @@
{
...
}:
{
boot = {
loader.systemd-boot.enable = true;
loader.efi.canTouchEfiVariables = true;
};
}

View File

@ -4,6 +4,8 @@
}: }:
{ {
imports = [ imports = [
./boot.nix
./firefox.nix
./fonts.nix ./fonts.nix
./gdm.nix ./gdm.nix
./hyprland.nix ./hyprland.nix