This commit is contained in:
HotaruBlaze
2026-05-31 10:44:55 +00:00
parent 4521968b3f
commit 7deac83d33
6 changed files with 29 additions and 37 deletions

View File

@@ -7,11 +7,8 @@
...
}:
{
imports = [
../../common/incus.nix
];
deployment = {
targetHost = "192.168.1.69";
targetHost = "192.168.1.70";
targetPort = 22;
targetUser = "phoenix";
buildOnTarget = true;
@@ -24,7 +21,9 @@
imports = [
./hardware-configuration.nix
../../modules/common.nix
../../modules/common/incus.nix
./networking.nix
./users.nix
./power-plan.nix
];
}

View File

@@ -0,0 +1,22 @@
{
name,
nodes,
pkgs,
lib,
inputs,
...
}:
{
services.power-profiles-daemon.enable = true;
powerManagement.powertop.enable = true;
# boot.kernelParams = [
# "pcie_aspm=force"
# ];
environment.systemPackages = with pkgs; [
powertop
turbostat
];
}