mirror of
https://github.com/Zedfrigg/ironbar.git
synced 2025-08-16 22:31:03 +02:00
Adds a new module which shows the status of toggle mod keys (capslock, num lock, scroll lock). Resolves #700
23 lines
No EOL
320 B
Nix
23 lines
No EOL
320 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
cargo
|
|
clippy
|
|
rustfmt
|
|
gtk3
|
|
gtk-layer-shell
|
|
gcc
|
|
openssl
|
|
libdbusmenu-gtk3
|
|
libpulseaudio
|
|
libinput
|
|
libevdev
|
|
luajit
|
|
luajitPackages.lgi
|
|
];
|
|
|
|
nativeBuildInputs = with pkgs; [
|
|
pkg-config
|
|
];
|
|
} |