Files

8 lines
154 B
Nix
Raw Permalink Normal View History

{ writeShellApplication, gh, ... }:
writeShellApplication {
name = "setup-ssh";
runtimeInputs = [ gh ];
text = builtins.readFile ./setup-ssh.sh;
}