Valheim’s engine (Unity) defaults to DirectX 11, which often struggles with the high instance counts of player-made structures. The Vulkan API is a more modern, lower-level interface that allows better communication between your CPU and GPU. By adding specific commands to the boot.config and Steam launch options, we can force the engine to prioritize “Job Worker Threads,” ensuring that the game utilizes all available CPU cores more efficiently, resulting in a much smoother experience during base-building and raids.
Hardware Compatibility & Expectations
- AMD GPU Users: Vulkan is highly recommended for AMD cards, as it often provides a 15-20% FPS boost over DX11.
- CPU-Bound Systems: If your FPS drops significantly when looking at your base, these tweaks will help stabilize those “1% lows.”
- Linux / Steam Deck: These systems use Vulkan by default, but the
boot.configtweaks can still provide extra stability.
Backup and Preparation
Modifying the boot configuration is safe, but it can be reset during game updates.
- Completely exit Valheim.
- Navigate to the game’s installation directory.
- Locate boot.config, right-click it, select Copy, and save a backup to your desktop.
- Open the original file with Notepad or Notepad++.
File Location
The configuration file is located within the game’s data folder: ...\SteamLibrary\steamapps\common\Valheim\valheim_Data\boot.config
Best Config Settings
Open boot.config and add these two lines to the very top of the file:
gfx-enable-gfx-jobs=1
gfx-enable-native-gfx-jobs=1
Next, to fully unlock the performance, you must add the Vulkan command to your Steam Launch Options:
- Right-click Valheim in your Steam Library.
- Select Properties > General.
- In the Launch Options box, paste:
-force-vulkan
Key Parameters Explained
| Parameter | Recommended Value | Impact |
| gfx-enable-gfx-jobs | 1 | Enables Unity’s “Graphics Jobs” which offloads work to multiple CPU threads. |
| gfx-enable-native-gfx-jobs | 1 | Further optimizes thread communication; works best with modern multi-core CPUs. |
| -force-vulkan | Launch Option | Forces the use of the Vulkan API instead of the legacy DirectX 11. |
| -window-mode exclusive | Launch Option | (Optional) Forces true fullscreen, which can reduce input lag on some monitors. |
In-Game Settings vs. Config
To maintain the performance gained from Vulkan, adjust these in-game “Graphics” settings:
- Point Light Shadows: Set to Low or Medium. These are the biggest FPS killers in bases with many torches.
- Tessellation: Off. This is very heavy on the GPU and provides minimal visual benefit in the stylized world of Valheim.
- Vegetation Quality: Medium. This helps you see forageable items like berries and mushrooms more easily.
- SSAO: Set to Medium to maintain depth without the heavy blur of the High setting.
Troubleshooting & Common Fixes
- Game Crashes on Launch: Not all older GPUs support Vulkan. If your game crashes, remove
-force-vulkanfrom your Steam Launch Options and try again. - Visual Artifacts: Some users report flickering shadows with Vulkan. If this occurs, ensure your GPU drivers are updated to the latest version.
- Steam Overlay Not Working: Vulkan can sometimes conflict with third-party overlays (like Discord or MSI Afterburner). Try disabling them if you encounter issues.
Frequently Asked Questions (FAQ)
Does Vulkan work with mods (BepInEx)?
Yes. Most Valheim mods are compatible with Vulkan. However, if you use “Graphic Overhaul” mods, check their descriptions for Vulkan-specific compatibility.
Why isn’t ‘Gfx Jobs’ enabled by default?
It is an experimental feature in some versions of Unity. While it provides a massive performance boost, it can occasionally cause stability issues on very old hardware.
Will this fix the lag on dedicated servers?
Server-side lag (desync) is usually a network issue. However, these tweaks will fix “Client-side” lag, which is the stuttering you feel when the server sends you a large amount of object data.
Conclusion and Expected Results
By manually enabling Gfx Jobs in the boot.config and forcing Vulkan, you are modernizing Valheim’s engine performance. You can expect higher average FPS, vastly improved stability inside large bases, and a snappier response during combat. Your journey through the tenth world is now optimized for the gods.