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
iot-data
nix-remove-result-links
nixfiles
nixfiles-auto-install.nix
nixfiles-auto-install.sh
nixfiles-generate-backup-secrets.nix
nixfiles-generate-backup-secrets.sh
nixfiles-generate-config.nix
nixfiles-generate-config.sh
nixfiles-update-ssh-host-keys.nix
nixfiles-update-ssh-host-keys.sh
overrides
print-afra
run-with-docker-group
ssh-gpg
update-from-hydra
uptimestatus
overlay.nix
users
.gitignore
README.md
flake.lock
flake.nix
13 lines
217 B
Nix
13 lines
217 B
Nix
{ pkgs, ... }:
|
|
|
|
pkgs.writeShellApplication {
|
|
name = "nixfiles-update-ssh-host-keys";
|
|
text = builtins.readFile ./nixfiles-update-ssh-host-keys.sh;
|
|
runtimeInputs = with pkgs; [
|
|
git
|
|
nix
|
|
openssh
|
|
];
|
|
}
|
|
|