This commit is contained in:
0m.ax 2025-07-19 23:33:47 +02:00
commit cf0af3737d
2 changed files with 115 additions and 0 deletions

13
shell.nix Normal file
View file

@ -0,0 +1,13 @@
let
pkgs = import <nixpkgs> {};
in pkgs.mkShell {
packages = [ pkgs.libinput
(pkgs.python3.withPackages (python-pkgs: [
python-pkgs.paho-mqtt
pkgs.libinput
python-pkgs.libevdev
]))
];
}