We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96c8e1e commit 88b0ac8Copy full SHA for 88b0ac8
roles/direnv/files/direnv.toml
@@ -0,0 +1,3 @@
1
+[global]
2
+load_dotenv = true
3
+strict_env = true
roles/direnv/tasks/main.yaml
@@ -14,3 +14,15 @@
14
marker: "# {mark} direnv configuration"
15
create: true
16
mode: u=rw,g=,o=
17
+
18
+- name: Create direnv configuration directory
19
+ ansible.builtin.file:
20
+ path: ~/.config/direnv
21
+ state: directory
22
+ mode: '0755'
23
24
+- name: Copy direnv configuration
25
+ ansible.builtin.copy:
26
+ src: direnv.toml
27
+ dest: ~/.config/direnv/direnv.toml
28
+ mode: u=rw,g=,o=
0 commit comments