{ config, lib, pkgs, inputs, ... }: { imports = [ inputs.disko.nixosModules.disko ./disko.nix ./hardware-configuration.nix ./display-configuration.nix ../../modules/hardware/nvidia.nix ../../modules/apps/gaming.nix ]; networking.hostName = "hades"; # Enable in-memory compressed swap zramSwap.enable = true; # Ensure /games directory is accessible by default user systemd.tmpfiles.rules = [ "d /games 0755 anish users -" ]; powerManagement.cpuFreqGovernor = "performance"; hardware.nvidia.prime = { offload.enable = false; sync.enable = false; amdgpuBusId = "PCI:121@0:0:0"; nvidiaBusId = "PCI:1@0:0:0"; }; environment.systemPackages = with pkgs; [ mangohud nvtopPackages.nvidia ]; }