7 lines
119 B
Nix
7 lines
119 B
Nix
with import <nixpkgs> {};
|
|
|
|
pkgs.writeShellScriptBin "todos" ''
|
|
#!/bin/sh
|
|
file=~/sync/todo.txt plans-backend "$@"
|
|
''
|
|
|