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

23 lines
391 B
Nix

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