MyNixOS website logo

List of Vicinae extensions to install.

You can use the config.lib.vicinae.mkExtension and config.lib.vicinae.mkRayCastExtension functions to create them, like:

 [
  (config.lib.vicinae.mkExtension {
    name = "test-extension";
    src =
      pkgs.fetchFromGitHub {
        owner = "schromp";
        repo = "vicinae-extensions";
        rev = "f8be5c89393a336f773d679d22faf82d59631991";
        sha256 = "sha256-zk7WIJ19ITzRFnqGSMtX35SgPGq0Z+M+f7hJRbyQugw=";
      }
      + "/test-extension";
  })
  (config.lib.vicinae.mkRayCastExtension {
    name = "gif-search";
    sha256 = "sha256-G7il8T1L+P/2mXWJsb68n4BCbVKcrrtK8GnBNxzt73Q=";
    rev = "4d417c2dfd86a5b2bea202d4a7b48d8eb3dbaeb1";
  })
 ],
Declarations
Type
list of package
Default
[ ]