1
0
Fork 0
nixfiles/pkgs/nixfiles/nixfiles-update-ssh-host-ke...

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