todo is a tool for quick reminders and taking notes.
WARNING: this tool is mostly WIP but is quite usable and feature complete
Install the application and hit '?', it'll show all the keybinds for the program
- Install Go
- Run:
go install github.com/ludihan/todo@latest
- Enable flakes
- Add this repo to the input of your flake:
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
todo = {
url = "github:ludihan/todo";
inputs.nixpkgs.follows = "nixpkgs";
};
};- Add the program as a module to your NixOS or Home Manager config:
outputs = { self, nixpkgs, todo, ... }:
{
nixosConfigurations.example = nixpkgs.lib.nixosSystem {
inherit system;
modules = [
todo.nixosModules.todo
];
};
}outputs = { self, nixpkgs, todo, ... }:
{
homeConfigurations.example = home-manager.lib.homeManagerConfiguration {
inherit system;
modules = [
todo.homeModules.todo
];
};
}