Nix-Hyprland/nixos/modules/bootloader.nix
2024-04-17 05:52:14 +05:00

7 lines
198 B
Nix

{
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.initrd.kernelModules = [ "amdgpu" ];
boot.kernelParams = [ "psmouse.synaptics_intertouch=0" ];
}