nixfiles/pkgs/update-nixfiles/default.nix

16 lines
226 B
Nix
Raw Normal View History

2024-05-16 14:28:11 +02:00
{ pkgs, ... }:
pkgs.writeShellApplication {
name = "update-nixfiles";
text = builtins.readFile ./update-nixfiles.sh;
runtimeInputs = with pkgs; [
2024-06-21 23:32:20 +02:00
bash
2024-05-16 14:28:11 +02:00
curl
jq
nix
gnugrep
2024-05-16 17:07:39 +02:00
git
openssh
2024-05-16 14:28:11 +02:00
];
}