17 lines
318 B
YAML
17 lines
318 B
YAML
|
---
|
||
|
- name: Packages
|
||
|
ansible.builtin.include_tasks: install.yml
|
||
|
tags: install
|
||
|
|
||
|
- name: Create directory for GHC config
|
||
|
ansible.builtin.file:
|
||
|
path: ~/.ghc
|
||
|
state: directory
|
||
|
mode: 0740
|
||
|
|
||
|
- name: Install ghci.conf
|
||
|
ansible.builtin.copy:
|
||
|
src: files/ghci.conf
|
||
|
dest: ~/.ghc/ghci.conf
|
||
|
mode: 0640
|