cfg/host/solo/default.nix
2025-03-01 18:19:19 +01:00

19 lines
363 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";
}