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
|
|
|
];
|
|
|
|
}
|