Move nethack config into dotfiles role

This commit is contained in:
Eryn Wells 2024-10-03 15:37:16 -05:00
parent 2c23fad3e8
commit 3b509c45d1
3 changed files with 10 additions and 0 deletions

View file

@ -21,3 +21,6 @@
- name: Shell utilities
ansible.builtin.include_tasks: shell_utilities.yml
- name: Nethack
ansible.builtin.include_tasks: nethack.yml

View file

@ -0,0 +1,7 @@
---
- name: (nethack) Link nethackrc
ansible.builtin.file:
path: ~/.nethackrc
src: "{{ role_path }}/files/nethack/nethackrc"
state: link
force: true