summaryrefslogtreecommitdiff
path: root/modules/root/software/ddcutil.nix
blob: 0c623705205156359aa053e2ee6e4e1ad51ed6c7 (plain)
1
2
3
4
5
6
7
8
9
10
{ pkgs, lib, config ... }: {
	options = {
		programs.ddcutil.enable = lib.mkEnableOption "enables ddcutil and i2c control";
	};

	config = lib.mkIf programs.ddcutil.enable {
		hardware.i2c.enable = true;
		environment.systemPackages = [ pkgs.ddcutil ];
	}
}