dot.nix/hosts/global/common/ddcutil.nix
Chris Toph 3523b82392 Configuration Cleanup
- Removed inaccurate comments
- Refactored browsers to independent nixes
- Small code changes for clarity
2025-05-29 15:25:49 -04:00

16 lines
274 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = builtins.attrValues {
inherit (pkgs)
ddcutil
;
};
hardware.i2c.enable = true;
services.udev = {
enable = true;
extraRules = ''
KERNEL=="i2c-[0-9]*", GROUP="i2c", MODE="0660"
'';
};
}