.dotfiles/pkgs/sshrm/default.nix
2025-07-04 18:26:00 +02:00

6 lines
184 B
Nix

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