configuration
flake
hosts
lib
modules
pkgs
chromium-incognito
clerie-backup
clerie-keys
clerie-sops
clerie-system-remote-install
clerie-system-upgrade
clerie-update-nixfiles
factorio-launcher
feeds-dir
git-checkout-github-pr
git-diff-word
git-pp
git-show-link
iot-data
nix-remove-result-links
nixfiles
overrides
print-afra
run-with-docker-group
ssh-gpg
update-from-hydra
default.nix
update-from-hydra.sh
uptimestatus
overlay.nix
pkgs.nix
profiles
users
.gitignore
README.md
flake.lock
flake.nix
13 lines
189 B
Nix
13 lines
189 B
Nix
{ pkgs, ... }:
|
|
|
|
pkgs.writeShellApplication {
|
|
name = "update-from-hydra";
|
|
text = builtins.readFile ./update-from-hydra.sh;
|
|
runtimeInputs = with pkgs; [
|
|
curl
|
|
jq
|
|
nix
|
|
];
|
|
}
|
|
|