Nix-Hyprland/nixos/modules/bootloader.nix

7 lines
198 B
Nix
Raw Normal View History

2024-04-16 20:52:14 -04:00
{
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.initrd.kernelModules = [ "amdgpu" ];
boot.kernelParams = [ "psmouse.synaptics_intertouch=0" ];
}