{ config, lib, pkgs, modulesPath, desktop, username, ... }: {
  boot = {
    initrd.kernelModules = [ ];
    kernelModules = [ "iptable_nat" "iptable_filter" "xt_nat" ];
    extraModulePackages = [ ];
  };

  time.timeZone = "Asia/Tokyo";

  networking = {
    hostName = "nixos-linode-img";
    useDHCP = lib.mkForce false;
    enableIPv6 = lib.mkForce false;
    firewall.allowedTCPPorts = [ 22 ];
  };
}