cfg/host/solo/default.nix
2025-06-30 22:39:38 +02:00

20 lines
313 B
Nix

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