nixos/common/laptop.nix
Ivan Bushchik e5a3158d2e
uhhhhhhhhh
add secrets
refactor things
2023-07-28 15:39:50 +03:00

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;
}