nixos/hosts/physical/crow/system-configuration.nix

22 lines
437 B
Nix
Raw Normal View History

2025-12-08 20:30:22 -05:00
{ 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";
2026-05-17 17:50:15 +00:00
# Enable 32 bit graphics
hardware.graphics = {
enable = true;
enable32Bit = true;
};
2025-12-08 20:30:22 -05:00
}