add wshowkeys module and package

This commit is contained in:
ulic-youthlic 2025-05-23 00:08:35 +08:00
parent 2afb64528d
commit 73ff50db30
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
13 changed files with 82 additions and 39 deletions

View file

@ -7,6 +7,7 @@ in
./dae.nix
./spotifyx.nix
./radicle-explorer.nix
./wshowkeys.nix
]
|> map (file: import file args)
|> (overlays: (lib.composeManyExtensions overlays) final prev)

View file

@ -0,0 +1,5 @@
{outputs, ...}: final: prev: let
inherit (prev.stdenv.hostPlatform) system;
in {
wshowkeys = outputs.packages.${system}.wshowkeys-mao;
}