nixfiles/pkgs/update-nixfiles/default.nix
2024-05-16 17:28:36 +02:00

14 lines
217 B
Nix

{ pkgs, ... }:
pkgs.writeShellApplication {
name = "update-nixfiles";
text = builtins.readFile ./update-nixfiles.sh;
runtimeInputs = with pkgs; [
curl
jq
nix
gnugrep
git
openssh
];
}