.dotfiles/pkgs/t2ts/default.nix
2024-12-15 14:59:08 +01:00

9 lines
132 B
Nix

{ writeShellApplication }:
writeShellApplication {
name = "t2ts";
runtimeInputs = [ ];
text = ''
date -d"$1" +%s
'';
}