19 lines
363 B
Nix
19 lines
363 B
Nix
{ mod, ... }: {
|
|
networking.hostName = "solo";
|
|
|
|
services.xserver.enable = true;
|
|
|
|
imports = with mod; [
|
|
collections.pc-common
|
|
keyboard
|
|
nvidia-gpu
|
|
games
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
powerManagement.enable = true;
|
|
powerManagement.cpuFreqGovernor = "performance";
|
|
|
|
# ====== DON'T CHANGE ======
|
|
system.stateVersion = "25.05";
|
|
}
|