Files
nixos/pkgs/setup-ssh/default.nix
T
Greg Hellings 6a3f482792 Continue moving personal packages from overlays
Continue moving out of the overlay model for everything and into running
sutff directly out of the packages. This should give a cleaner
separation of the things that I don't need to maintain separately
2024-10-11 12:58:03 -05:00

8 lines
154 B
Nix

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