{ config, lib, pkgs, ... }: { imports = [ ./hardware-configuration.nix ./powertop-auto-tune.nix ../../nixos/archetypes/tjkeller # Uncomment this module and reboot to enable bios flashing #./bios-flashing.nix ]; # Use grub boot._loader = { enable = true; loader = "grub"; mode = "bios"; grub.biosDevice = "/dev/sda"; }; # Use libre kernel boot.kernelPackages = pkgs.linuxPackages-libre; # i915 Gpu requires intel driver services.xserver.videoDrivers = [ "intel" ]; system.stateVersion = "24.11"; }