{ inputs, config, lib, pkgs, system, ... }: {
  imports = [ 
    ./disks.nix
    ./syncthing.nix 
    ../../common/modules/secureboot.nix
    # ../../common/modules/yubikey-auth.nix
    # ../../common/modules/boot.nix
    ../../common/modules/ssh-luks.nix
    ../../common/services/openrazer.nix
    ../../common/services/podman.nix
    ../../common/services/tailscale-autoconnect.nix
    ../../common/modules/builder.nix
  ];

  boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "thunderbolt" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
  boot.initrd.kernelModules = [ ];
  boot.kernelModules = [ "kvm-intel" "acpi_call" ];
  boot.extraModulePackages = with config.boot.kernelPackages; [ acpi_call ];

  networking.useDHCP = lib.mkDefault true;
  powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
  hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
  hardware.keyboard.zsa.enable = true;

  # Set your time zone.
  time.timeZone = "Asia/Tokyo";

  # Set the networking hostname:
  networking.hostName = "nixos-desktop";

  services.xserver.videoDrivers = [ "nvidia" ];
  services.hardware = {
    openrgb = {
      enable = true;
      motherboard = "intel";
    };
  };

  hardware = {
    opengl = {
      enable = true;
      driSupport32Bit = true;
      driSupport = true;
    };

    nvidia = {
      open = false;
      nvidiaSettings = true;
      modesetting.enable = true;
      # package = config.boot.kernelPackages.nvidiaPackages.production;  # (installs 550)
      package = config.boot.kernelPackages.nvidiaPackages.stable;
    };
  };

  environment.systemPackages = [ 
    # deployments and development environments
    inputs.deploy-rs.packages.${system}.deploy-rs
    pkgs.distrobox

    # nVidia gpu options
    pkgs.gwe
    pkgs.nvtopPackages.nvidia
    # WINE
    # support 32-bit only
    pkgs.wine
    # support 64-bit only
    (pkgs.wine.override { wineBuild = "wine64"; })
    pkgs.wineWowPackages.staging
    pkgs.winetricks
    pkgs.wineWowPackages.waylandFull

    # RGB stuff
    pkgs.openrgb-with-all-plugins

    # Other
    pkgs.android-udev-rules
  ];
}