.dotfiles/pkgs/bootstrap/default.nix

7 lines
171 B
Nix

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