.dotfiles/pkgs/sshrm/default.nix
2025-04-15 17:59:20 +02:00

6 lines
178 B
Nix

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