dotfiles/modules/machines/atlas.nix

36 lines
1.1 KiB
Nix

{ inputs, config, osConfig, pkgs, variables, framework-12-13th-gen-intel, ... }:
{
system.nixos.label = "atlas";
networking.hostName = "atlas";
hardware.sensor.iio.enable = true;
services.thermald.enable = true; # prevents overheating on Intel CPUs
# services.tlp = { # laptop powerman stuff
# enable = true;
# settings = {
# CPU_SCALING_GOVERNOR_ON_AC = "performance";
# CPU_SCALING_GOVERNOR_ON_BAT = "performance";
#
# CPU_ENERGY_PERF_POLICY_ON_BAT = "performance";
# CPU_ENERGY_PERF_POLICY_ON_AC = "performance";
#
# CPU_MIN_PERF_ON_AC = 0;
# CPU_MAX_PERF_ON_AC = 100;
# CPU_MIN_PERF_ON_BAT = 0;
# CPU_MAX_PERF_ON_BAT = 100;
#
# #Optional helps save long term battery health
# START_CHARGE_THRESH_BAT0 = 40; # 40 and below it starts to charge
# STOP_CHARGE_THRESH_BAT0 = 80; # 80 and above it stops charging
#
# };
# };
imports =
[ # if this map-impure doesn't work, copy the below file into this folder, and point the path here
/etc/nixos/hardware-configuration.nix
];
}