nixos/hosts/physical/crow/system-configuration.nix
2026-05-17 17:50:15 +00:00

21 lines
437 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";
# Enable 32 bit graphics
hardware.graphics = {
enable = true;
enable32Bit = true;
};
}