cfg/host/solo/default.nix
2025-03-22 12:28:50 +01:00

20 lines
362 B
Nix

{ mod, ... }:
{
networking.hostName = "solo";
services.xserver.enable = true;
imports = with mod; [
collections.pc-common
keyboard
nvidia-gpu
games
./hardware-configuration.nix
];
powerManagement.enable = true;
powerManagement.cpuFreqGovernor = "performance";
# ====== DON'T CHANGE ======
system.stateVersion = "25.05";
}