feat(plugins): add screenkey

This commit is contained in:
Nicolas Goudry 2024-06-16 00:06:27 +02:00
parent 39bfc42f58
commit 281069d97e
No known key found for this signature in database
GPG key ID: 5FC434D9FFD1DF44
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,10 @@
# homepage: https://github.com/NStefan002/screenkey.nvim
{ lib, pkgs, ... }:
{
extra = {
packages = [
(import ./package.nix { inherit lib pkgs; })
];
};
}