Crates.io | mem-yaml |
lib.rs | mem-yaml |
version | 0.1.0-alpha |
source | src |
created_at | 2024-10-22 02:02:12.564246 |
updated_at | 2024-10-22 02:02:12.564246 |
description | Anki's alternative for who hates GUI and mouse clicks |
homepage | |
repository | https://github.com/haruki-nikaidou/mem-yaml.git |
max_upload_size | |
id | 1418171 |
size | 122,053 |
Anki's alternative for who hates GUI and mouse clicks.
This project is in early stage. If there are more than 5 users, I'll finish it.
cargo install mem-yaml
in flake.nix
{
inputs.mem-yaml.url = "github:haruki-nikaidou/mem-yaml";
}
in configuration.nix
{ pkgs, inputs, ... }:
{
environment.systemPackages = with pkgs; [
inputs.mem-yaml.packages.${pkgs.system}.mem-yaml
];
}
or, if you use home manager
{ pkgs, inputs, ... }:
{
home.packages = with pkgs; [
inputs.mem-yaml.packages.${pkgs.system}.mem-yaml
];
}