9 lines
161 B
Nix
9 lines
161 B
Nix
{ pkgs, ... }:
|
|
pkgs.writeShellScriptBin "note" # bash
|
|
''
|
|
zk edit -i
|
|
pushd ~/notebook > /dev/null
|
|
git add .
|
|
commit -u
|
|
popd > /dev/null
|
|
''
|