summaryrefslogtreecommitdiff
path: root/modules/root/tlp.nix
blob: 3414c033218c2242c5cbf5d86436051611b9ce60 (plain)
1
2
3
4
5
6
7
8
9
{ lib, config, ... }: {
	options = {
		tlp.enable = lib.mkEnableOption "enables tlp";
	};

	config = lib.mkIf config.tlp.enable {
		services.tlp.enable = true;
	};
}