Skip to content

Commit

Permalink
framework/*: add fw-ectool for led control, etc
Browse files Browse the repository at this point in the history
This adds a patched ectool, to interact with the Embedded Controller
Can be used to interact with leds from userspace, etc.
Not part of a nixos release yet, so package only gets added if it exists.
  • Loading branch information
mkg20001 authored and mergify[bot] committed Sep 24, 2023
1 parent 08add92 commit 61283b3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions framework/12th-gen-intel/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,9 @@

# Fix font sizes in X
# services.xserver.dpi = 200;

# This adds a patched ectool, to interact with the Embedded Controller
# Can be used to interact with leds from userspace, etc.
# Not part of a nixos release yet, so package only gets added if it exists.
environment.systemPackages = lib.optional (pkgs ? "fw-ectool") pkgs.fw-ectool;
}
5 changes: 5 additions & 0 deletions framework/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,9 @@

# Fix font sizes in X
# services.xserver.dpi = 200;

# This adds a patched ectool, to interact with the Embedded Controller
# Can be used to interact with leds from userspace, etc.
# Not part of a nixos release yet, so package only gets added if it exists.
environment.systemPackages = lib.optional (pkgs ? "fw-ectool") pkgs.fw-ectool;
}

0 comments on commit 61283b3

Please sign in to comment.