16 lines
337 B
Nix
16 lines
337 B
Nix
|
|
{ config, lib, pkgs, ... }:
|
||
|
|
|
||
|
|
{
|
||
|
|
# Use the systemd-boot EFI boot loader.
|
||
|
|
boot.loader.systemd-boot.enable = true;
|
||
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
||
|
|
boot.loader.timeout = 1;
|
||
|
|
|
||
|
|
# Use latest kernel
|
||
|
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||
|
|
boot.kernelModules = [ "amdgpu" ];
|
||
|
|
|
||
|
|
system.stateVersion = "26.05";
|
||
|
|
}
|
||
|
|
|