nixos-config/nixos/modules/bootloader.nix
2024-10-01 15:32:05 +03:00

7 lines
198 B
Nix

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