c2: hw tuning
This commit is contained in:
parent
62d3765e58
commit
f52a8f225b
3 changed files with 36 additions and 5 deletions
|
|
@ -1,14 +1,26 @@
|
|||
{ mod, ... }:
|
||||
{ mod, inputs, ... }:
|
||||
{
|
||||
networking.hostName = "c2";
|
||||
|
||||
imports = with mod; [
|
||||
collections.pc-common
|
||||
./hardware-configuration.nix
|
||||
];
|
||||
imports =
|
||||
with mod;
|
||||
[
|
||||
collections.pc-common
|
||||
./hardware-configuration.nix
|
||||
]
|
||||
++ (with inputs.nixos-hardware.nixosModules; [
|
||||
common-cpu-intel
|
||||
common-pc-laptop
|
||||
common-pc-laptop-ssd
|
||||
]);
|
||||
|
||||
boot.loader.efi.efiSysMountPoint = "/boot/efi";
|
||||
|
||||
powerManagement = {
|
||||
enable = true;
|
||||
cpuFreqGovernor = "ondemand";
|
||||
};
|
||||
|
||||
# ====== DON'T CHANGE ======
|
||||
system.stateVersion = "25.05";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue