{ config, pkgs, ... }:

let
  hostname = "atom";

in {

  imports = [
    ../defaults.nix
    ../hardware-configuration.nix
  ];

  boot.loader.grub.enable = true;
  boot.loader.grub.version = 2;
  boot.loader.grub.device = "/dev/sda";

  networking.hostName = hostname;

  environment.systemPackages = with pkgs; [
    glxinfo
    hll2380dw-cups
    usbutils
  ];

  fudo.common = {
    profile = "laptop";
    site = "seattle";
  };

  hardware.cpu.amd.updateMicrocode = true;

  programs = {
    bash.enableCompletion = true;
  };

  services.xserver = {
    # videoDrivers = ["nvidia"];
    # displayManager.gdm.wayland = false;
  };

  hardware.opengl.driSupport32Bit = true;
  hardware.opengl.extraPackages32 = with pkgs.pkgsi686Linux; [ libva ];
  hardware.opengl.driSupport = true;

  hardware.pulseaudio.support32Bit = true;

  hardware.bluetooth.enable = true;

}