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