Skip to content

Instantly share code, notes, and snippets.

@dustinlacewell-wk
Created February 9, 2018 02:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dustinlacewell-wk/ada1ba0c0a420ca5f10782180cecd512 to your computer and use it in GitHub Desktop.
Save dustinlacewell-wk/ada1ba0c0a420ca5f10782180cecd512 to your computer and use it in GitHub Desktop.
home.file.".ssh/personal" = {
text = builtins.getEnv "PERSONAL_PRIVATE_KEY";
mode = "400";
};
home.file.".ssh/personal.pub".text = builtins.getEnv "PERSONAL_PUBLIC_KEY";
home.file.".ssh/workiva" = {
text = builtins.getEnv "WORKIVA_PRIVATE_KEY";
mode = "400";
};
home.file.".ssh/workiva.pub".text = builtins.getEnv "WORKIVA_PUBLIC_KEY";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment