{ inputs, config, lib, pkgs, modulesPath, desktop, username, ... }: {
  imports = [ 
    inputs.nixos-hardware.nixosModules.framework-13-7040-amd
    (modulesPath + "/installer/scan/not-detected.nix")
    ./disks.nix
    ../../common/modules/secureboot.nix
    ../../common/modules/udev-rules.nix
    ../../common/modules/ssh-luks.nix
    ../../common/services/powertop.nix 
    ../../common/services/fwupd.nix
    ../../common/services/podman.nix
  ];

  # steam , etc
  nixpkgs.config.allowUnfree = true;

  boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "thunderbolt" ];
  boot.initrd.kernelModules = [ ];
  boot.kernelModules = [ "kvm-amd" "acpi_call" ];
  # boot.extraModulePackages = with config.boot.kernelPackages; [ acpi_call ];

  networking.useDHCP = lib.mkDefault true;
  nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
  powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
  hardware.keyboard.zsa.enable = true;
  hardware.cpu.amd.updateMicrocode =  lib.mkDefault config.hardware.enableRedistributableFirmware;
  # Set your time zone.
  time.timeZone = "Asia/Tokyo";

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

  # Laptop can't sleep for some reason
  systemd.services.systemd-logind.environment = {
    SYSTEMD_BYPASS_HIBERNATION_MEMORY_CHECK = "1";
  };

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

  environment.systemPackages = with pkgs; [ 
    distrobox
    # Game related things
    gamemode
    # WINE
    wineWowPackages.stable
    winetricks
    wineWowPackages.waylandFull
  ];

  # Generic Tailscale configs are in /nixos/common/services/tailscale.nix
  # Set up the secrets file:
  sops.secrets."tailscale_keys/nixos-framework" = {
    owner = "root";
    sopsFile = ../../../secrets/tailscale.yaml;
    restartUnits = [
      "tailscaled.service"
      "tailscaled-autoconnect.service"
    ];
  };
  services.tailscale.authKeyFile = "/run/secrets/tailscale_keys/nixos-framework";
  # networking.firewall.allowedTCPPorts = [ 22 ];
}