cfg/host/solo/default.nix
2025-05-26 11:49:02 +02:00

17 lines
293 B
Nix

{ lib', ... }:
let
submodules = lib'.walk-dir ./.;
in
{
networking.hostName = "solo";
imports = [ submodules.to_mod_without_default ];
powerManagement = {
enable = true;
cpuFreqGovernor = "performance";
};
# ====== DON'T CHANGE ======
system.stateVersion = "25.05";
}