Add efi.nix

This commit is contained in:
Tove 2025-12-18 13:26:41 +01:00
parent 15819a6471
commit bc03c570ff

6
efi.nix Normal file
View file

@ -0,0 +1,6 @@
{ config, lib, pkgs, modulesPath, ... }:
{
boot.loader.grub.enable = lib.mkForce false;
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
}