nixos/common/laptop.nix
Ivan Bushchik 595cc4d833
Rethink configuration
Signed-off-by: Ivan Bushchik <ivabus@ivabus.dev>
2023-08-21 13:30:49 +03:00

15 lines
240 B
Nix

{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
powertop
lm_sensors
];
hardware.bluetooth.enable = true;
services.blueman.enable = true;
services.tlp.enable = true;
services.upower.enable = true;
}