mirror of
https://github.com/ivabus/nixos
synced 2024-11-10 02:25:18 +03:00
13 lines
202 B
Nix
13 lines
202 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
powertop
|
|
lm_sensors
|
|
];
|
|
|
|
boot.plymouth.enable = true;
|
|
|
|
services.tlp.enable = true;
|
|
services.upower.enable = true;
|
|
} |