adding coolercontrol, updated kanata, updates wez keys

This commit is contained in:
Matt Nish-Lapidus 2025-05-30 11:50:00 -04:00
parent 67248e038d
commit 6c3e172b45
6 changed files with 102 additions and 146 deletions

17
overlays/termusic.nix Normal file
View file

@ -0,0 +1,17 @@
final: prev: {
termusic-git = prev.termusic.overrideAttrs (old: rec {
version = "HEAD";
src = prev.fetchFromGitHub {
owner = "tramhao";
repo = "termusic";
rev = "HEAD";
hash = "sha256-l95vSxVfS0Fkhrfopzz/J5SXVPRAvT8qx899rBqor8A=";
};
cargoDeps = final.rustPlatform.fetchCargoVendor {
inherit src;
hash = "sha256-q8rfB57sSmzvuY+QomBY8boOADLSYQnt1aRVi6fz1bY=";
};
});
}