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