nixos-config/nixos/modules/bootloader.nix

7 lines
198 B
Nix
Raw Normal View History

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