dot_bashrc 305 B

12345678910111213141516171819
  1. export NIX_AUTO_RUN=0
  2. my-nix-version()
  3. {
  4. nix-instantiate --eval -E '(import <nixpkgs> {}).lib.nixpkgsVersion'
  5. }
  6. docker-strace-pids()
  7. {
  8. container="$1"
  9. docker top "$container" | tail -n +2 | awk '{ print $2 }' | sed 's/^/-p/';
  10. }
  11. tmux()
  12. {
  13. command tmux -f "$SSHHOME/.sshrc.d/.tmux.conf"
  14. }