summaryrefslogtreecommitdiff
path: root/modules/root/ddcutil.nix
diff options
context:
space:
mode:
authorTim Keller <tjkeller.xyz>2024-11-17 20:59:51 -0600
committerTim Keller <tjkeller.xyz>2024-11-17 20:59:51 -0600
commit98aa1968a263d7de4f41fde9e10c02e4e9b234f9 (patch)
treee8e97c899a7609d71ec8debc1898c4a9ce4ad75c /modules/root/ddcutil.nix
parenta6033a1b4cfdc5f37f4185752c2830bd5a45792a (diff)
downloadnixos-98aa1968a263d7de4f41fde9e10c02e4e9b234f9.tar.xz
nixos-98aa1968a263d7de4f41fde9e10c02e4e9b234f9.zip
unused module for customizing chrome
Diffstat (limited to 'modules/root/ddcutil.nix')
-rw-r--r--modules/root/ddcutil.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/root/ddcutil.nix b/modules/root/ddcutil.nix
new file mode 100644
index 0000000..93e0af5
--- /dev/null
+++ b/modules/root/ddcutil.nix
@@ -0,0 +1,6 @@
+{ pkgs, ... }: {
+ hardware.i2c.enable = true;
+ environment.systemPackages = with pkgs; [
+ ddcutil
+ ];
+}