nixos/old/hosts/physical/crow/system-configuration.nix
2026-05-19 22:25:43 +00:00

15 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";
}