45 lines
816 B
Nix
45 lines
816 B
Nix
{
|
|
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
|
|
../../modules/apps/local_ai.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
|
|
];
|
|
}
|