cfg/host/solo/default.nix
2025-07-14 22:57:12 +02:00

31 lines
503 B
Nix

{ ... }:
{
networking.hostName = "solo";
age.identityPaths = [
"/root/.ssh/id_ed25519"
];
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";
}