{ config, pkgs, ... }: { # [HARDWARE] imports = [ # Include the results of the hardware scan. ./hardware-configuration.nix ]; hardware.opengl = { enable = true; driSupport = true; driSupport32Bit = true; }; # [BOOT] boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; # [NETWORKING] networking.hostName = "computational"; networking.networkmanager.enable = true; system.stateVersion = "23.05"; }