cfg/host/solo/default.nix
2025-05-14 03:22:38 +02:00

18 lines
299 B
Nix

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