nixos/pkgs/push.nix

23 lines
275 B
Nix
Raw Permalink Normal View History

2024-11-17 15:14:45 +01:00
{
writeShellApplication,
nushell,
openssh,
jq,
nix-output-monitor,
nvd,
...
}:
writeShellApplication {
name = "push";
text = ''
nu ${../scripts/push.nu} "$@"
'';
runtimeInputs = [
nushell
openssh
jq
nix-output-monitor
nvd
];
}