Files
lavitz/modules/boot.nix
2025-09-09 22:18:44 -06:00

21 lines
472 B
Nix

{ config, pkgs, ... }:
{
# Bootloader
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
# Use latest kernel
boot.kernelPackages = pkgs.linuxPackages_latest;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
xdg.portal.config.common.default = [ "gnome" ];
boot.initrd.availableKernelModules = [
"nvidia_drm" "nvidia_modeset" "nvidia" "nvidia_uvm"
];
boot.kernelParams = [ "preempt=full" ];
}