Fix loader

This commit is contained in:
Henry Hiles 2025-07-08 16:35:34 -04:00
commit e1b8dde9bf
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs

9
modules/desktop/boot.nix Normal file
View file

@ -0,0 +1,9 @@
{
boot = {
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
kernelParams = ["sysrq_always_enabled=1"];
};
}