summaryrefslogtreecommitdiffstats
path: root/nixos/modules/bootloader.nix
blob: 4134e8919ea00104db8ced7e408d8c5a7345fdd1 (plain) (blame)
1
2
3
4
5
6
{
  boot.loader.systemd-boot.enable = true;
  boot.loader.efi.canTouchEfiVariables = true;
  boot.initrd.kernelModules = [ "amdgpu" ];
  boot.kernelParams = [ "psmouse.synaptics_intertouch=0" ]; 
}