mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-30 10:05:17 +08:00
8 lines
145 B
Nix
8 lines
145 B
Nix
{ pkgs, ... }: {
|
|
# ddcutils requires i2c
|
|
boot.kernelModules = [ "i2c-dev" ];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
ddcutil
|
|
];
|
|
}
|