31 lines
503 B
Nix
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";
|
|
}
|