initial commit

This commit is contained in:
Henri Dohmen 2025-03-01 18:19:19 +01:00
commit c4dc2e0f36
25 changed files with 558 additions and 0 deletions

19
host/solo/default.nix Normal file
View file

@ -0,0 +1,19 @@
{ 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";
}