.dotfiles/pkgs/t2ts/default.nix
2024-12-29 00:36:04 +01:00

9 lines
142 B
Nix

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