cfg/host/solo/default.nix
2025-07-14 14:45:55 +02:00

27 lines
445 B
Nix

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