generated from coredotbin/template-ansible-project
29 lines
747 B
YAML
29 lines
747 B
YAML
---
|
|
|
|
# coredotbin.openssh
|
|
openssh_port: 22
|
|
openssh_hostkeys:
|
|
- /etc/ssh/ssh_host_ed25519_key
|
|
openssh_kexalgorithms:
|
|
- curve25519-sha256@libssh.org
|
|
- diffie-hellman-group-exchange-sha256
|
|
openssh_macs:
|
|
- hmac-sha2-512-etm@openssh.com
|
|
- hmac-sha2-256-etm@openssh.com
|
|
- umac-128-etm@openssh.com
|
|
|
|
# grog.package
|
|
package_list:
|
|
- name: tmux
|
|
- name: rsync
|
|
|
|
# ironicbadger.bash_aliases (formerly ferrarimarco.bash-aliases)
|
|
bash_aliases_all:
|
|
- {alias: "cp", command: "cp -v"}
|
|
- {alias: "mv", command: "mv -vi"}
|
|
- {alias: "rm", command: "rm -I"}
|
|
- {alias: "ls", command: "ls --color=auto"}
|
|
- {alias: "ll", command: "ls -lh --color=auto"}
|
|
- {alias: "la", command: "ls -lah --color=auto"}
|
|
- {alias: "tma", command: "tmux a -t 0"}
|