.dotfiles/pkgs/flake/sshrm/default.nix

6 lines
184 B
Nix

{ self, name, writeShellApplication, openssh }:
writeShellApplication {
inherit name;
runtimeInputs = [ openssh ];
text = builtins.readFile "${self}/files/scripts/${name}.sh";
}