nix-config/modules/features/hardware-laptop.nix
2026-04-15 18:26:05 -04:00

18 lines
288 B
Nix

{ ... }:
{
config.dendritic.features.hardware-laptop = {
nixosModules = [
(
{ config, ... }:
{
networking.networkmanager.enable = true;
powerManagement.enable = true;
services.tlp.enable = true;
}
)
];
};
}