diff options
author | Aaditya Dhruv <[email protected]> | 2023-09-10 13:13:53 -0500 |
---|---|---|
committer | Aaditya Dhruv <[email protected]> | 2023-09-10 13:13:53 -0500 |
commit | e3b667abbdfa192ad9baeb44a28a57ff1346b498 (patch) | |
tree | ab2db3bb7511c3f3120ad029f37672366cf04ddd | |
parent | 2c4e604049ef625049d1fbb6ad241dffea800bea (diff) |
Update install.yaml and config.yaml with system role config
New flags are added in config.yaml to manage the system level
configuration
-rw-r--r-- | config.yaml | 6 | ||||
-rw-r--r-- | install.yaml | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/config.yaml b/config.yaml index 810e765..ff5238a 100644 --- a/config.yaml +++ b/config.yaml @@ -4,9 +4,13 @@ packages: - development - gaming system: + wireguard: + wg_path: /etc/wireguard/wg0.conf + install_wireguard: true + install_systemd: true opt: config: install_shell: true - install_wayland: true + install_wayland: false install_xorg: false install_misc: false diff --git a/install.yaml b/install.yaml index 3273901..5177032 100644 --- a/install.yaml +++ b/install.yaml @@ -13,3 +13,6 @@ - name: Configs Setup include_role: name: "src/config" + - name: System setup + include_role: + name: "src/system" |