dotfiles/etc/apps/goki/default.nix
2005 a9f0e0bd12 💫 some look changes
added rofi theme but it kinda looks scuffed. (last update broke the theme)
added waydroid
few more applications
enabled ollama once again
vscode: added typescript prettier linter
2024-07-13 17:48:39 +02:00

23 lines
591 B
Nix
Executable file

{ lib, buildGoModule, fetchFromGitHub, pkgs, stdenv, ... }:
buildGoModule rec {
pname = "goki";
version = "0.1.1";
src = fetchFromGitHub
{
owner = "abeleinin";
repo = "goki";
rev = "b2c4ee6f0e040ce9ac2b089ab01438066e47bb9f";
hash = "sha256-ThAQ/VgIBjKyAmo2oZARh3nqo8wB6nuv/HYRCOSbe8U=";
};
vendorHash = "sha256-SCX/eXXnwnCNZ11jw+ZNeJ42HUhI5MnV+AaO89BTKJs=";
meta = with lib; {
description = "An intelligent flashcard management tool for the terminal! ";
homepage = "https://github.com/abeleinin/goki";
license = licenses.mit;
};
}