add todo
This commit is contained in:
@@ -7,6 +7,8 @@
|
|||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
todo.url = "github:sioodmy/todo";
|
||||||
|
|
||||||
zen-browser = {
|
zen-browser = {
|
||||||
url = "github:0xc000022070/zen-browser-flake";
|
url = "github:0xc000022070/zen-browser-flake";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
vscode
|
vscode
|
||||||
spotify
|
spotify
|
||||||
obsidian
|
obsidian
|
||||||
lmstudio
|
# lmstudio
|
||||||
plantuml
|
plantuml
|
||||||
# amnezia-vpn
|
# amnezia-vpn
|
||||||
btop
|
btop
|
||||||
@@ -20,6 +20,7 @@
|
|||||||
wl-clipboard
|
wl-clipboard
|
||||||
tesseract
|
tesseract
|
||||||
syncthing
|
syncthing
|
||||||
|
todo
|
||||||
];
|
];
|
||||||
|
|
||||||
services.syncthing = { enable = true; };
|
services.syncthing = { enable = true; };
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
REPO_DIR="$HOME/Documents/Github/nixos-config"
|
REPO_DIR="$HOME/Documents/Github/nixos-config"
|
||||||
cd "$REPO_DIR" || { echo "Error: cannot change directory to $REPO_DIR" >&2; exit 1; }
|
cd "$REPO_DIR" || { echo "Error: cannot change directory to $REPO_DIR" >&2; exit 1; }
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,8 @@
|
|||||||
(writeShellScriptBin "move_avatar" (builtins.readFile ./move_avatar.sh))
|
(writeShellScriptBin "move_avatar" (builtins.readFile ./move_avatar.sh))
|
||||||
(writeShellScriptBin "next_wallpaper"
|
(writeShellScriptBin "next_wallpaper"
|
||||||
(builtins.readFile ./next_wallpaper.sh))
|
(builtins.readFile ./next_wallpaper.sh))
|
||||||
(writeShellScriptBin "update_git_config" (builtins.readFile ./update_system_from_git.sh))
|
(writeShellScriptBin "update_git_config"
|
||||||
|
(builtins.readFile ./update_system_from_git.sh))
|
||||||
zsh-powerlevel10k
|
zsh-powerlevel10k
|
||||||
fzf
|
fzf
|
||||||
fd
|
fd
|
||||||
@@ -98,6 +99,11 @@
|
|||||||
mv_w = "move_wallpaper";
|
mv_w = "move_wallpaper";
|
||||||
next_w = "next_wallpaper";
|
next_w = "next_wallpaper";
|
||||||
mv_avatar = "move_avatar";
|
mv_avatar = "move_avatar";
|
||||||
|
|
||||||
|
t = "todo";
|
||||||
|
ta = ''f() { todo add "$@"; todo; unset -f f; }; f'';
|
||||||
|
tr = ''f() { todo rm "$@"; todo; unset -f f; }; f'';
|
||||||
|
td = ''f() { todo done "$@"; todo; unset -f f; }; f'';
|
||||||
};
|
};
|
||||||
|
|
||||||
initContent = ''
|
initContent = ''
|
||||||
|
|||||||
Reference in New Issue
Block a user