.dotfiles/pkgs/swarsel-bootstrap/default.nix
2024-12-29 00:36:04 +01:00

6 lines
178 B
Nix

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