nixos/common/laptop.nix
Ivan Bushchik f18869691a
Changes
Signed-off-by: Ivan Bushchik <ivabus@ivabus.dev>
2023-08-02 10:43:52 +03:00

17 lines
272 B
Nix

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